kern

diff src/klibc/stdlib.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 bdd9bf70269d
children
line diff
     1.1 --- a/src/klibc/stdlib.h	Fri Dec 09 13:44:15 2011 +0200
     1.2 +++ b/src/klibc/stdlib.h	Fri Dec 09 15:29:54 2011 +0200
     1.3 @@ -8,6 +8,7 @@
     1.4  
     1.5  int atoi(const char *str);
     1.6  long atol(const char *str);
     1.7 +long strtol(const char *str, char **endp, int base);
     1.8  
     1.9  void itoa(int val, char *buf, int base);
    1.10  void utoa(unsigned int val, char *buf, int base);