diff options
Diffstat (limited to 'src/string/strpbrk.c')
| -rw-r--r-- | src/string/strpbrk.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/string/strpbrk.c b/src/string/strpbrk.c index 096917ff..9ad6a5ff 100644 --- a/src/string/strpbrk.c +++ b/src/string/strpbrk.c @@ -2,6 +2,7 @@ #include "_assert.h" /** count matching characters **/ + char * strpbrk(const char *s1, const char *s2) { size_t i; @@ -21,8 +22,9 @@ char * strpbrk(const char *s1, const char *s2) /*** locates the first occurence in ARGUMENT(s1) of any character in ARGUMENT(s2). ***/ + /* - RETURN_FAILURE(CONSTANT(NULL)); - RETURN_SUCCESS(a pointer to the located character); +RETURN_FAILURE(CONSTANT(NULL)); +RETURN_SUCCESS(a pointer to the located character); STDC(1) */ |
