1
0
mirror of https://github.com/RevCurtisP/C02.git synced 2024-06-08 06:29:32 +00:00
C02/include/util.h02
2018-08-14 14:14:32 -04:00

19 lines
506 B
Plaintext

/********************************
* util - C02 Utility Functions *
********************************/
/* Decode Tokeniz into Destination String *
* Args: &t - Address of Token List *
* Returns: Tokenized Value of String */
char tkndec();
/* Encode Tokenized 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();