Changes between Initial Version and Version 2 of Ticket #3372


Ignore:
Timestamp:
03/27/18 14:52:06 (6 years ago)
Author:
Joel Sherrill
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #3372

    • Property Priority changed from low to normal
    • Property Version changed from 5 to
    • Property Component changed from score to posix
    • Property Summary changed from add testsuites for inttypes.h methods to RTEMS5 to add tests for inttypes.h methods to RTEMS
  • Ticket #3372 – Description

    initial v2  
     1These methods are defined in the POSIX standard here:
     2http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/inttypes.h.html
     3
     4This entails the following methods:
     5
     6intmax_t  imaxabs(intmax_t);
     7imaxdiv_t imaxdiv(intmax_t, intmax_t);
     8intmax_t  strtoimax(const char *restrict, char **restrict, int);
     9uintmax_t strtoumax(const char *restrict, char **restrict, int);
     10intmax_t  wcstoimax(const wchar_t *restrict, wchar_t **restrict, int);
     11uintmax_t wcstoumax(const wchar_t *restrict, wchar_t **restrict, int);