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