nckernel  0.1
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
strncmp.c
Go to the documentation of this file.
1 #include <sys/types.h>
2 #include <stdio.h>
3 #include <string.h>
4 
5 int strncmp(const char *s1, const char *s2, size_t n)
6 {
7  while (*s1 && *s2 && *s1 == *s2 && n > 0) {
8  n--;
9  s1++;
10  s2++;
11  }
12 
13  return n == 0 ? 0 : *s1 - *s2;
14 }
15 
16 /* End of a file */