Index: fusl/src/string/memrchr.c |
diff --git a/fusl/src/string/memrchr.c b/fusl/src/string/memrchr.c |
new file mode 100644 |
index 0000000000000000000000000000000000000000..a78e9d6cafa0c700cdeb00c856ac250d932e5ab5 |
--- /dev/null |
+++ b/fusl/src/string/memrchr.c |
@@ -0,0 +1,12 @@ |
+#include <string.h> |
+#include "libc.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); |