Implementation of strto(u)ll, documentation and tests for strto(u)l(l)

This commit is contained in:
Erik van der Kouwe
2009-12-09 19:01:38 +00:00
parent fcaaad3317
commit 6adadade32
9 changed files with 429 additions and 17 deletions

View File

@@ -77,6 +77,14 @@ _PROTOTYPE( int putenv, (char *string) );
_PROTOTYPE( int setenv, (const char *envname, const char *envval,
int overwrite) );
_PROTOTYPE( int unsetenv, (const char *name) );
#ifdef __LONG_LONG_SUPPORTED
_PROTOTYPE( long long strtoll, (const char *_nptr, char **_endptr,
int _base) );
_PROTOTYPE( unsigned long long strtoull, (const char *_nptr,
char **_endptr, int _base) );
#endif
#endif
#ifdef _MINIX