Răsfoiți Sursa

Update string.h

Bernard Xiong 11 ani în urmă
părinte
comite
d0a7861534
1 a modificat fișierele cu 2 adăugiri și 0 ștergeri
  1. 2 0
      components/libc/minilibc/string.h

+ 2 - 0
components/libc/minilibc/string.h

@@ -66,6 +66,8 @@ char*strtok_r(char*s, const char*delim, char**ptrptr);
 size_t strcspn(const char *s, const char *reject);
 size_t strcspn(const char *s, const char *reject);
 size_t strspn (const char *s, const char *accept);
 size_t strspn (const char *s, const char *accept);
 
 
+long strtol(const char *str, char **endptr, int base);
+long long strtoll(const char *str, char **endptr, int base);
 #endif
 #endif
 
 
 #endif
 #endif