]> pd.if.org Git - pdclib/blob - functions/stdlib/strtox.c
Added template implementation files.
[pdclib] / functions / stdlib / strtox.c
1 // ----------------------------------------------------------------------------
2 // $Id$
3 // ----------------------------------------------------------------------------
4 // Public Domain C Library - http://pdclib.sourceforge.net
5 // This code is Public Domain. Use, modify, and redistribute at will.
6 // ----------------------------------------------------------------------------
7
8 double atof( const char * s ) { /* TODO */ };
9 int atoi( const char * s ) { /* TODO */ };
10 long atol( const char * s ) { /* TODO */ };
11 long long atoll( const char * s) { /* TODO */ };
12
13 double strtod( const char * restrict s, char * * restrict endptr ) { /* TODO */ };
14 float strtof( const char * restrict s, char * * restrict endptr ) { /* TODO */ };
15 long double strtold( const char * restrict s, char * * restrict endptr ) { /* TODO */ };
16
17 long long strtoll( const char * restrict s, char * * restrict endptr, int base ) { /* TODO */ };
18 unsigned long long strtoull( const char * restrict s, char * * restrict endptr, int base) { /* TODO */ };
19
20 long strtol( const char * restrict s, char * * restrict endptr, int base ) { /* TODO */ };
21 unsigned long strtoul( const char * restrict s, char * * restrict endptr, int base) { /* TODO */ };