diff options
Diffstat (limited to 'lib/string/string.h')
| -rw-r--r-- | lib/string/string.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/string/string.h b/lib/string/string.h new file mode 100644 index 0000000..e41eb94 --- /dev/null +++ b/lib/string/string.h @@ -0,0 +1,8 @@ +#ifndef STRING_H +#define STRING_H + + +void* memcpy(void* restrict dstptr, const void* restrict srcptr, int size); +int strcmp_l(char *str1, char *str2, int length); + +#endif |
