diff options
Diffstat (limited to 'menu/string.h')
-rw-r--r-- | menu/string.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/menu/string.h b/menu/string.h new file mode 100644 index 00000000..8aa4628e --- /dev/null +++ b/menu/string.h @@ -0,0 +1,19 @@ + +#ifndef __STRING_H__ +#define __STRING_H__ + +/* String routines */ + +void *memset(void *buf, int chr, unsigned int len); + +char *strcpy(char *dst, const char *src); + +void dstrcpy(char *dst, const char *src); // DOS strcpy: Make it $ terminated and null terminated + +char *strcat(char *dst, const char * src); + +int strcmp(const char *a,const char*b); + +int strlen(const char *a); + +#endif |