1 /** 2 * D header file for POSIX. 3 * 4 * Copyright: Copyright Sean Kelly 2005 - 2009. 5 * License: $(HTTP www.boost.org/LICENSE_1_0.txt, Boost License 1.0). 6 * Authors: Sean Kelly 7 * Standards: The Open Group Base Specifications Issue 6, IEEE Std 1003.1, 2004 Edition 8 */ 9 10 /* Copyright Sean Kelly 2005 - 2009. 11 * Distributed under the Boost Software License, Version 1.0. 12 * (See accompanying file LICENSE or copy at 13 * http://www.boost.org/LICENSE_1_0.txt) 14 */ 15 module core.sys.posix.inttypes; 16 17 import core.sys.posix.config; 18 public import core.stdc.inttypes; 19 20 version (Posix): 21 extern (C) nothrow @nogc: 22 @system: 23 24 // 25 // Required 26 // 27 /* 28 intmax_t imaxabs(intmax_t); 29 imaxdiv_t imaxdiv(intmax_t, intmax_t); 30 intmax_t strtoimax(const scope char*, char**, int); 31 uintmax_t strtoumax(const scope char*, char**, int); 32 intmax_t wcstoimax(const scope wchar_t*, wchar_t**, int); 33 uintmax_t wcstoumax(const scope wchar_t*, wchar_t**, int); 34 */ 35 36 intmax_t imaxabs(intmax_t); 37 imaxdiv_t imaxdiv(intmax_t, intmax_t); 38 intmax_t strtoimax(const scope char*, char**, int); 39 uintmax_t strtoumax(const scope char*, char**, int); 40 intmax_t wcstoimax(const scope wchar_t*, wchar_t**, int); 41 uintmax_t wcstoumax(const scope wchar_t*, wchar_t**, int); 42