diff options
Diffstat (limited to 'src/lib/inc/string.h')
-rw-r--r-- | src/lib/inc/string.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/lib/inc/string.h b/src/lib/inc/string.h new file mode 100644 index 0000000..c97fada --- /dev/null +++ b/src/lib/inc/string.h @@ -0,0 +1,10 @@ +// MIT License, Copyright (c) 2020 Marvin Borner + +#ifndef STRING_H +#define STRING_H + +#include <def.h> + +u32 strlen(const char *str); + +#endif |