Just4Trionic - CAN and BDM FLASH programmer for Saab cars

Dependencies:   mbed

Revision:
0:e0b964252a05
Child:
1:d5452e398b76
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/strings.h	Wed May 19 12:39:18 2010 +0000
@@ -0,0 +1,12 @@
+
+// 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);
\ No newline at end of file