]> pd.if.org Git - pdclib/blob - functions/inttypes.c
Re-import from Subversion.
[pdclib] / functions / inttypes.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 intmax_t imaxabs( intmax_t i ) { /* TODO */ };
9 imaxdiv_t imaxdiv( intmax_t numer, intmax_t denom ) { /* TODO */ };
10
11 intmax_t strtoimax( const char * restrict s, char * * restrict endptr, int base ) { /* TODO */ };
12 uintmax_t strtoumax( const char * restrict s, char * * restrict endptr, int base ) { /* TODO */ };
13 intmax_t wcstoimax( const wchar_t * restrict s, wchar_t * * restrict endptr, int base ) { /* TODO */ };
14 uintmax_t wcstoumax( const wchar_t * restrict s, wchar_t * * restrict endptr, int base ) { /* TODO */ };