// ---------------------------------------------------------------------------- // $Id$ // ---------------------------------------------------------------------------- // Public Domain C Library - http://pdclib.sourceforge.net // This code is Public Domain. Use, modify, and redistribute at will. // ---------------------------------------------------------------------------- // ---------------------------------------------------------------------------- // Standard C intmax_t imaxabs( intmax_t i ) { /* TODO */ }; imaxdiv_t imaxdiv( intmax_t numer, intmax_t denom ) { /* TODO */ }; intmax_t strtoimax( const char * restrict s, char * * restrict endptr, int base ) { /* TODO */ }; uintmax_t strtoumax( const char * restrict s, char * * restrict endptr, int base ) { /* TODO */ }; intmax_t wcstoimax( const wchar_t * restrict s, wchar_t * * restrict endptr, int base ) { /* TODO */ }; uintmax_t wcstoumax( const wchar_t * restrict s, wchar_t * * restrict endptr, int base ) { /* TODO */ };