summaryrefslogtreecommitdiff
path: root/kernel/libc/string/strcmp.c
blob: c1b1432fb23ffab56bec7441568cb5065cfbf37b (plain)
1
2
3
4
5
6
7
#include "../include/string.h"

int strcmp(const char *s1, const char *s2) {
  for (; *s1 == *s2 && *s1; s1++, s2++)
    ;
  return *s1 - *s2;
}