diff options
Diffstat (limited to 'include/lib/strings.h')
-rw-r--r-- | include/lib/strings.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/include/lib/strings.h b/include/lib/strings.h new file mode 100644 index 0000000..1bbcac8 --- /dev/null +++ b/include/lib/strings.h @@ -0,0 +1,10 @@ +#ifndef LIB_STRINGS_H +#define LIB_STRINGS_H + +#define string_t char* + +unsigned long strlen(string_t s); +unsigned char strcmp(string_t a, string_t b); +unsigned char strcmpn(string_t a, string_t b, unsigned int n); + +#endif |