X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstdlib%2Fstrtox.c;fp=functions%2Fstdlib%2Fstrtox.c;h=cca971138d5fb6ed339b569f843157e5e70632f3;hb=dcc8a8e99f69e090a03b7b868443addbc0817820;hp=0000000000000000000000000000000000000000;hpb=e794d9887cd8f94befd7861e39eccf46666c89fe;p=pdclib.old diff --git a/functions/stdlib/strtox.c b/functions/stdlib/strtox.c new file mode 100644 index 0000000..cca9711 --- /dev/null +++ b/functions/stdlib/strtox.c @@ -0,0 +1,21 @@ +// ---------------------------------------------------------------------------- +// $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 */ };