From 162d024a53e1e31e00ff0b6f47dd4590edebc551 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Sun, 9 Aug 2020 16:51:01 +0200 Subject: Heavy restructuring of libc, kernel and apps --- lib/inc/str.h | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 lib/inc/str.h (limited to 'lib/inc/str.h') diff --git a/lib/inc/str.h b/lib/inc/str.h new file mode 100644 index 0000000..65774e7 --- /dev/null +++ b/lib/inc/str.h @@ -0,0 +1,17 @@ +// MIT License, Copyright (c) 2020 Marvin Borner + +#ifndef STR_H +#define STR_H + +#include + +u32 strlen(const char *s); +char *strcpy(char *dst, const char *src); +char *strchr(const char *s, int c); +char *strcat(char *dst, const char *src); +int strcmp(const char *s1, const char *s2); +int strncmp(const char *s1, const char *s2, u32 n); +char *strinv(char *s); +char *strdup(const char *s); + +#endif -- cgit v1.2.3