]> pd.if.org Git - pdclib/blobdiff - functions/stdlib/strtox.c
Added template implementation files.
[pdclib] / functions / stdlib / strtox.c
diff --git a/functions/stdlib/strtox.c b/functions/stdlib/strtox.c
new file mode 100644 (file)
index 0000000..cca9711
--- /dev/null
@@ -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 */ };