diff options
Diffstat (limited to 'src/string/memrchr.c')
-rw-r--r-- | src/string/memrchr.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/string/memrchr.c b/src/string/memrchr.c new file mode 100644 index 0000000..e51748b --- /dev/null +++ b/src/string/memrchr.c @@ -0,0 +1,11 @@ +#include <string.h> + +void *__memrchr(const void *m, int c, size_t n) +{ + const unsigned char *s = m; + c = (unsigned char)c; + while (n--) if (s[n]==c) return (void *)(s+n); + return 0; +} + +weak_alias(__memrchr, memrchr); |