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

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