byte-based C locale, phase 2: stdio and iconv (multibyte callers)
[musl] / include / stdlib.h
1 #ifndef _STDLIB_H
2 #define _STDLIB_H
3
4 #ifdef __cplusplus
5 extern "C" {
6 #endif
7
8 #include <features.h>
9
10 #ifdef __cplusplus
11 #define NULL 0L
12 #else
13 #define NULL ((void*)0)
14 #endif
15
16 #define __NEED_size_t
17 #define __NEED_wchar_t
18
19 #include <bits/alltypes.h>
20
21 int atoi (const char *);
22 long atol (const char *);
23 long long atoll (const char *);
24 double atof (const char *);
25
26 float strtof (const char *__restrict, char **__restrict);
27 double strtod (const char *__restrict, char **__restrict);
28 long double strtold (const char *__restrict, char **__restrict);
29
30 long strtol (const char *__restrict, char **__restrict, int);
31 unsigned long strtoul (const char *__restrict, char **__restrict, int);
32 long long strtoll (const char *__restrict, char **__restrict, int);
33 unsigned long long strtoull (const char *__restrict, char **__restrict, int);
34
35 int rand (void);
36 void srand (unsigned);
37
38 void *malloc (size_t);
39 void *calloc (size_t, size_t);
40 void *realloc (void *, size_t);
41 void free (void *);
42 void *aligned_alloc(size_t alignment, size_t size);
43
44 _Noreturn void abort (void);
45 int atexit (void (*) (void));
46 _Noreturn void exit (int);
47 _Noreturn void _Exit (int);
48 int at_quick_exit (void (*) (void));
49 _Noreturn void quick_exit (int);
50
51 char *getenv (const char *);
52
53 int system (const char *);
54
55 void *bsearch (const void *, const void *, size_t, size_t, int (*)(const void *, const void *));
56 void qsort (void *, size_t, size_t, int (*)(const void *, const void *));
57
58 int abs (int);
59 long labs (long);
60 long long llabs (long long);
61
62 typedef struct { int quot, rem; } div_t;
63 typedef struct { long quot, rem; } ldiv_t;
64 typedef struct { long long quot, rem; } lldiv_t;
65
66 div_t div (int, int);
67 ldiv_t ldiv (long, long);
68 lldiv_t lldiv (long long, long long);
69
70 int mblen (const char *, size_t);
71 int mbtowc (wchar_t *__restrict, const char *__restrict, size_t);
72 int wctomb (char *, wchar_t);
73 size_t mbstowcs (wchar_t *__restrict, const char *__restrict, size_t);
74 size_t wcstombs (char *__restrict, const wchar_t *__restrict, size_t);
75
76 #define EXIT_FAILURE 1
77 #define EXIT_SUCCESS 0
78
79 #define MB_CUR_MAX ((size_t)+4)
80
81 #define RAND_MAX (0x7fffffff)
82
83
84 #if defined(_POSIX_SOURCE) || defined(_POSIX_C_SOURCE) \
85  || defined(_XOPEN_SOURCE) || defined(_GNU_SOURCE) \
86  || defined(_BSD_SOURCE)
87
88 #define WNOHANG    1
89 #define WUNTRACED  2
90
91 #define WEXITSTATUS(s) (((s) & 0xff00) >> 8)
92 #define WTERMSIG(s) ((s) & 0x7f)
93 #define WSTOPSIG(s) WEXITSTATUS(s)
94 #define WIFEXITED(s) (!WTERMSIG(s))
95 #define WIFSTOPPED(s) ((short)((((s)&0xffff)*0x10001)>>8) > 0x7f00)
96 #define WIFSIGNALED(s) (((s)&0xffff)-1U < 0xffu)
97
98 int posix_memalign (void **, size_t, size_t);
99 int setenv (const char *, const char *, int);
100 int unsetenv (const char *);
101 int mkstemp (char *);
102 int mkostemp (char *, int);
103 char *mkdtemp (char *);
104 int getsubopt (char **, char *const *, char **);
105 int rand_r (unsigned *);
106
107 #endif
108
109
110 #if defined(_XOPEN_SOURCE) || defined(_GNU_SOURCE) \
111  || defined(_BSD_SOURCE)
112 char *realpath (const char *__restrict, char *__restrict);
113 long int random (void);
114 void srandom (unsigned int);
115 char *initstate (unsigned int, char *, size_t);
116 char *setstate (char *);
117 int putenv (char *);
118 int posix_openpt (int);
119 int grantpt (int);
120 int unlockpt (int);
121 char *ptsname (int);
122 char *l64a (long);
123 long a64l (const char *);
124 void setkey (const char *);
125 double drand48 (void);
126 double erand48 (unsigned short [3]);
127 long int lrand48 (void);
128 long int nrand48 (unsigned short [3]);
129 long mrand48 (void);
130 long jrand48 (unsigned short [3]);
131 void srand48 (long);
132 unsigned short *seed48 (unsigned short [3]);
133 void lcong48 (unsigned short [7]);
134 #endif
135
136 #if defined(_GNU_SOURCE) || defined(_BSD_SOURCE)
137 #include <alloca.h>
138 char *mktemp (char *);
139 int mkstemps (char *, int);
140 int mkostemps (char *, int, int);
141 void *valloc (size_t);
142 void *memalign(size_t, size_t);
143 int getloadavg(double *, int);
144 int clearenv(void);
145 #define WCOREDUMP(s) ((s) & 0x80)
146 #define WIFCONTINUED(s) ((s) == 0xffff)
147 #endif
148
149 #ifdef _GNU_SOURCE
150 int ptsname_r(int, char *, size_t);
151 char *ecvt(double, int, int *, int *);
152 char *fcvt(double, int, int *, int *);
153 char *gcvt(double, int, char *);
154 struct __locale_struct;
155 float strtof_l(const char *__restrict, char **__restrict, struct __locale_struct *);
156 double strtod_l(const char *__restrict, char **__restrict, struct __locale_struct *);
157 long double strtold_l(const char *__restrict, char **__restrict, struct __locale_struct *);
158 #endif
159
160 #if defined(_LARGEFILE64_SOURCE) || defined(_GNU_SOURCE)
161 #define mkstemp64 mkstemp
162 #define mkostemp64 mkostemp
163 #if defined(_GNU_SOURCE) || defined(_BSD_SOURCE)
164 #define mkstemps64 mkstemps
165 #define mkostemps64 mkostemps
166 #endif
167 #endif
168
169 #ifdef __cplusplus
170 }
171 #endif
172
173 #endif