Just4Trionic - CAN and BDM FLASH programmer for Saab cars

Dependencies:   mbed

strings.h

Committer:
Just4pLeisure
Date:
2010-05-19
Revision:
0:e0b964252a05
Child:
1:d5452e398b76

File content as of revision 0:e0b964252a05:


// strings.h - information and definitions needed for working with strings of characters (ascii 'char')

#define TRUE 1
#define FALSE 0

extern char *StrCpy(char *s1, char *s2);
extern int StrLen(char *s);
extern bool StrCmp(char *s1, char *s2);
extern char ToUpper(char c);
extern char ToLower(char c);
extern char *aToh(char *s);