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