kern

diff src/klibc/string.h @ 91:f83f50c17c3b

continuing with the fs added strtol and strstr to klibc
author John Tsiombikas <nuclear@member.fsf.org>
date Fri, 09 Dec 2011 15:29:54 +0200
parents ebca81749ef5
children
line diff
     1.1 --- a/src/klibc/string.h	Fri Dec 09 13:44:15 2011 +0200
     1.2 +++ b/src/klibc/string.h	Fri Dec 09 15:29:54 2011 +0200
     1.3 @@ -14,6 +14,8 @@
     1.4  char *strchr(const char *s, int c);
     1.5  char *strrchr(const char *s, int c);
     1.6  
     1.7 +char *strstr(const char *str, const char *substr);
     1.8 +
     1.9  int strcmp(const char *s1, const char *s2);
    1.10  
    1.11  #endif	/* STRING_H_ */