// ---------------------------------------------------------------------------- // $Id$ // ---------------------------------------------------------------------------- // Public Domain C Library - http://pdclib.sourceforge.net // This code is Public Domain. Use, modify, and redistribute at will. // ---------------------------------------------------------------------------- double atof( const char * s ) { /* TODO */ }; int atoi( const char * s ) { /* TODO */ }; long atol( const char * s ) { /* TODO */ }; long long atoll( const char * s) { /* TODO */ }; double strtod( const char * restrict s, char * * restrict endptr ) { /* TODO */ }; float strtof( const char * restrict s, char * * restrict endptr ) { /* TODO */ }; long double strtold( const char * restrict s, char * * restrict endptr ) { /* TODO */ }; long long strtoll( const char * restrict s, char * * restrict endptr, int base ) { /* TODO */ }; unsigned long long strtoull( const char * restrict s, char * * restrict endptr, int base) { /* TODO */ }; long strtol( const char * restrict s, char * * restrict endptr, int base ) { /* TODO */ }; unsigned long strtoul( const char * restrict s, char * * restrict endptr, int base) { /* TODO */ };