summaryrefslogtreecommitdiff
path: root/src/user/lib/include
diff options
context:
space:
mode:
authordzwdz2022-08-07 00:04:54 +0200
committerdzwdz2022-08-07 00:04:54 +0200
commit93ce4f4248999adeb85c6859dc2b5c54d7a8d7b7 (patch)
treed2ed20a632cdaf782facce76c870413a47c3f60e /src/user/lib/include
parent809f9a9899b219e33ec839b3f9bee644fcfecacc (diff)
user/libc: strchr
Diffstat (limited to 'src/user/lib/include')
-rw-r--r--src/user/lib/include/string.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/user/lib/include/string.h b/src/user/lib/include/string.h
index 8930bee..9e08ae5 100644
--- a/src/user/lib/include/string.h
+++ b/src/user/lib/include/string.h
@@ -4,3 +4,5 @@
int isspace(char c);
long strtol(const char *restrict s, char **restrict end, int base);
+
+char *strchr(const char *s, int c);