diff options
Diffstat (limited to 'src/string/strcspn.c')
-rw-r--r-- | src/string/strcspn.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/string/strcspn.c b/src/string/strcspn.c index 49f7d92b..58d3f33b 100644 --- a/src/string/strcspn.c +++ b/src/string/strcspn.c @@ -2,6 +2,7 @@ #include "_assert.h" /** count non-matching characters **/ + size_t strcspn(const char *s1, const char *s2) { size_t i = 0; @@ -22,7 +23,8 @@ size_t strcspn(const char *s1, const char *s2) the number of characters that the beginning of the string ARGUMENT(s1) that are not in the string ARGUMENT(s2). ***/ + /* - RETURN_ALWAYS(the number of non-matching characters); +RETURN_ALWAYS(the number of non-matching characters); STDC(1) */ |