kern

diff src/klibc/string.h @ 67:ebca81749ef5

added strcmp
author John Tsiombikas <nuclear@mutantstargoat.com>
date Sun, 09 Oct 2011 20:38:35 +0300
parents 633e35c64772
children f83f50c17c3b
line diff
     1.1 --- a/src/klibc/string.h	Thu Oct 06 04:28:21 2011 +0300
     1.2 +++ b/src/klibc/string.h	Sun Oct 09 20:38:35 2011 +0300
     1.3 @@ -14,4 +14,6 @@
     1.4  char *strchr(const char *s, int c);
     1.5  char *strrchr(const char *s, int c);
     1.6  
     1.7 +int strcmp(const char *s1, const char *s2);
     1.8 +
     1.9  #endif	/* STRING_H_ */