diff options
Diffstat (limited to 'src/string/strrchr.c')
| -rw-r--r-- | src/string/strrchr.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/string/strrchr.c b/src/string/strrchr.c index 799fb3dd..8b033596 100644 --- a/src/string/strrchr.c +++ b/src/string/strrchr.c @@ -2,6 +2,7 @@ #include "_assert.h" /** search string from end **/ + char * strrchr(const char *s, int c) { int i = 0; @@ -25,6 +26,7 @@ char * strrchr(const char *s, int c) finds the last occurence of ARGUMENT(c) (converted to TYPE(char)) in the string ARGUMENT(s). ***/ + /* STDC(1) */ |
