#ifndef _INTTYPES_H_ #define _INTTYPES_H_ /* Copyright © 1995-2001, The AROS Development Team. All rights reserved. $Id: inttypes.h 20684 2004-01-21 07:58:10Z iaint $ Standard fixed sized integral types. */ #include #include #include /* TODO TODO TODO #if defined __cplusplus && defined __STDC_FORMAT_MACROS Macros for fprintf() Signed: PRId PRIdLEAST PRIdFAST PRIdMAX PRIdPTR PRIi PRIiLEAST PRIiFAST PRIiMAX PRIiPTR Unsigned: PRIo PRIoLEAST PRIoFAST PRIiMAX PRIiPTR PRIu PRIuLEAST PRIuFAST PRIiMAX PRIiPTR PRIx PRIxLEAST PRIxFAST PRIxMAX PRIxPTR PRIX PRIXLEAST PRIXFAST PRIXMAX PRIXPTR Macros for fscanf() SCNd SCNdLEAST SCNdFAST SCNdMAX SCNdPTR SCNi SCNiLEAST SCNiFAST SCNiMAX SCNiPTR SCNo SCNoLEAST SCNoFAST SCNoMAX SCNoPTR SCNu SCNuLEAST SCNuFAST SCNuMAX SCNuPTR SCNx SCNxLEAST SCNxFAST SCNxMAX SCNxPTR #endif */ #define __need_wchar_t #include __BEGIN_DECLS /* NOTIMPL intmax_t strtoimax(const char * restrict nptr, char ** restrict endptr, int base); */ /* NOTIMPL uintmax_t strtoumax(const char * restrict nptr, char ** restrict endptr, int base); */ /* NOTIMPL intmax_t wcstoimax(const wchar_t * restrict nptr, wchar_t ** restrict endptr, int base); */ /* NOTIMPL uintmax_t wcstoumax(const wchar_t * restrict nptr, wchar_t ** restrict endptr, int base); */ __END_DECLS #endif /* _INTTYPES_H_ */