summaryrefslogtreecommitdiff
path: root/src/inttypes/wcstoumax.c
blob: 8516da0821daf1203978fc679591464c55a4a88d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include <inttypes.h>

uintmax_t wcstoumax(const wchar_t * restrict nptr, wchar_t ** restrict endptr, int base)
{
  /* like wcstoll */

  /* if > UINTMAX_MAX */
  /* errno = ERANGE; */
  /* return UINTMAX_MAX */

  /* if no conversion */
  return 0;
}

/*
STDC(199901)
*/