summaryrefslogtreecommitdiff
path: root/src/string/strncmp.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/string/strncmp.c')
-rw-r--r--src/string/strncmp.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/string/strncmp.c b/src/string/strncmp.c
new file mode 100644
index 00000000..52ba0323
--- /dev/null
+++ b/src/string/strncmp.c
@@ -0,0 +1,9 @@
+#include <string.h>
+
+int strncmp(const char *_l, const char *_r, size_t n)
+{
+ const unsigned char *l=_l, *r=_r;
+ if (!n--) return 0;
+ for (; *l && *r && n && *l == *r ; l++, r++, n--);
+ return *l - *r;
+}