aboutsummaryrefslogtreecommitdiff
path: root/src/lib/str.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/str.c')
-rw-r--r--src/lib/str.c16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/lib/str.c b/src/lib/str.c
index 24f95e5..d1ee325 100644
--- a/src/lib/str.c
+++ b/src/lib/str.c
@@ -40,6 +40,22 @@ int strcmp(const char *s1, const char *s2)
return d;
}
+int strncmp(const char *s1, const char *s2, u32 n)
+{
+ const u8 *c1 = (const u8 *)s1;
+ const u8 *c2 = (const u8 *)s2;
+ u8 ch;
+ int d = 0;
+
+ while (n--) {
+ d = (int)(ch = *c1++) - (int)*c2++;
+ if (d || !ch)
+ break;
+ }
+
+ return d;
+}
+
char *strchr(const char *s, int c)
{
while (*s != (char)c) {