diff options
Diffstat (limited to 'src/string/strchr.c')
-rw-r--r-- | src/string/strchr.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/string/strchr.c b/src/string/strchr.c index f8a65bab..9aa16001 100644 --- a/src/string/strchr.c +++ b/src/string/strchr.c @@ -2,6 +2,7 @@ #include "_assert.h" /** string search **/ + char * strchr(const char *s, int c) { ASSERT_NONNULL(s); @@ -17,6 +18,7 @@ char * strchr(const char *s, int c) searches the string ARGUMENT(s) for the first occurrence of ARGUMENT(c) (converted to a TYPE(char)). ***/ + /* STDC(1) */ |