diff options
Diffstat (limited to 'src/include/toxic/string.h')
| -rw-r--r-- | src/include/toxic/string.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/include/toxic/string.h b/src/include/toxic/string.h new file mode 100644 index 0000000..69d8bd2 --- /dev/null +++ b/src/include/toxic/string.h @@ -0,0 +1,10 @@ +#ifndef STRING_H +#define STRING_H + +#include <stddef.h> + +size_t strlen(const char *s); +char *strcpy(char *restrict dst, const char *restrict src); + +void *memset(void *s, int c, size_t n); +#endif /* STRING_H */ |
