1
0
mirror of https://github.com/RevCurtisP/C02.git synced 2024-06-08 06:29:32 +00:00
C02/include/util.h02
2020-09-08 11:51:30 -04:00

19 lines
500 B
Plaintext

/********************************
* util - C02 Utility Functions *
********************************/
/* Decode Token into Destination String *
* Args: &t - Address of Token List *
* Returns: Tokenized Value of String */
char tkndec();
/* Encode Token from Destination String *
* Args: &t - Address of Token List *
* Returns: Tokenized Value of String */
char tknenc();
/* Swap Nybbles in Byte *
* Args: b - Byte to Swap *
* Returns: Swapped Byte */
char swap();