diff options
author | dzwdz | 2022-08-07 00:04:54 +0200 |
---|---|---|
committer | dzwdz | 2022-08-07 00:04:54 +0200 |
commit | 93ce4f4248999adeb85c6859dc2b5c54d7a8d7b7 (patch) | |
tree | d2ed20a632cdaf782facce76c870413a47c3f60e /src/user/lib/include | |
parent | 809f9a9899b219e33ec839b3f9bee644fcfecacc (diff) |
user/libc: strchr
Diffstat (limited to 'src/user/lib/include')
-rw-r--r-- | src/user/lib/include/string.h | 2 |
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); |