Just4Trionic - CAN and BDM FLASH programmer for Saab cars

Dependencies:   mbed

Committer:
Just4pLeisure
Date:
Wed May 19 12:39:18 2010 +0000
Revision:
0:e0b964252a05
Child:
1:d5452e398b76

        

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Just4pLeisure 0:e0b964252a05 1
Just4pLeisure 0:e0b964252a05 2 // strings.h - information and definitions needed for working with strings of characters (ascii 'char')
Just4pLeisure 0:e0b964252a05 3
Just4pLeisure 0:e0b964252a05 4 #define TRUE 1
Just4pLeisure 0:e0b964252a05 5 #define FALSE 0
Just4pLeisure 0:e0b964252a05 6
Just4pLeisure 0:e0b964252a05 7 extern char *StrCpy(char *s1, char *s2);
Just4pLeisure 0:e0b964252a05 8 extern int StrLen(char *s);
Just4pLeisure 0:e0b964252a05 9 extern bool StrCmp(char *s1, char *s2);
Just4pLeisure 0:e0b964252a05 10 extern char ToUpper(char c);
Just4pLeisure 0:e0b964252a05 11 extern char ToLower(char c);
Just4pLeisure 0:e0b964252a05 12 extern char *aToh(char *s);