std_stdlib.h
[目次 | 型・クラス・構造体 | マクロ]
1|/**************************************************************************
2| 1. <<< 標準ライブラリ・モジュール [stdlib.h] >>>
3|***************************************************************************/
4|
5|#ifndef __STDLIB_H
6|#define __STDLIB_H
7|
8|
9|#ifndef USES_PRIORITY_HEADER
10|/*[START_OF_PRIORITY_HEADER]*/
11|
12|#define USES_STDLIB
13|
14|/*[END_OF_PRIORITY_HEADER]*/
15|#endif /* USES_PRIORITY_HEADER */
16|
17|
18|
19|/*------------------------------------------------------------------------*/
20|/* 2. <<< Interface Area ----------------------------------------------- >>> */
21|/*------------------------------------------------------------------------*/
22|
23|#ifdef __cplusplus
24|extern "C" {
25|#endif
26|
27|
28|/***********************************************************
29| 3. <<< stdlib.h >>>
30|************************************************************/
31|
32|typedef unsigned short wchar_t;
33|
34|wchar_t* _itow( int value, wchar_t* string, int radix );
35|
36|/*------------------------------------------------------------------------*/
37|/* 4. <<< Mapping Area ------------------------------------------------- >>> */
38|/*------------------------------------------------------------------------*/
39|
40|
41|
42|#ifdef __cplusplus
43|}
44|#endif
45|
46|#endif
47|
48|
49|