add ptsname_r (nonstandard) and split ptsname (standard) to separate file
[musl] / include / stdlib.h
1 #ifndef _STDLIB_H
2 #define _STDLIB_H
3
4 #ifdef __cplusplus
5 extern "C" {
6 #endif
7
8 #undef NULL
9 #ifdef __cplusplus
10 #define NULL 0
11 #else
12 #define NULL ((void*)0)
13 #endif
14
15 #define __NEED_size_t
16 #define __NEED_wchar_t
17
18 #include <bits/alltypes.h>
19
20 int atoi (const char *);
21 long atol (const char *);
22 long long atoll (const char *);
23 double atof (const char *);
24
25 float strtof (const char *, char **);
26 double strtod (const char *, char **);
27 long double strtold (const char *, char **);
28
29 long strtol (const char *, char **, int);
30 unsigned long strtoul (const char *, char **, int);
31 long long strtoll (const char *, char **, int);
32 unsigned long long strtoull (const char *, char **, int);
33
34 int rand (void);
35 void srand (unsigned);
36
37 void *malloc (size_t);
38 void *calloc (size_t, size_t);
39 void *realloc (void *, size_t);
40 void free (void *);
41
42 void abort (void);
43 int atexit (void (*) (void));
44 void exit (int);
45 void _Exit (int);
46
47 char *getenv (const char *);
48
49 int system (const char *);
50
51 void *bsearch (const void *, const void *, size_t, size_t, int (*)(const void *, const void *));
52 void qsort (void *, size_t, size_t, int (*)(const void *, const void *));
53
54 int abs (int);
55 long labs (long);
56 long long llabs (long long);
57
58 typedef struct { int quot, rem; } div_t;
59 typedef struct { long quot, rem; } ldiv_t;
60 typedef struct { long long quot, rem; } lldiv_t;
61
62 div_t div (int, int);
63 ldiv_t ldiv (long, long);
64 lldiv_t lldiv (long long, long long);
65
66 int mblen (const char *, size_t);
67 int mbtowc (wchar_t *, const char *, size_t);
68 int wctomb (char *, wchar_t);
69 size_t mbstowcs (wchar_t *, const char *, size_t);
70 size_t wcstombs (char *, const wchar_t *, size_t);
71
72 #define EXIT_FAILURE 1
73 #define EXIT_SUCCESS 0
74
75 #define MB_CUR_MAX ((size_t)+4)
76
77 #define RAND_MAX (0x7fffffff)
78
79
80 #if defined(_POSIX_SOURCE) || defined(_POSIX_C_SOURCE) \
81  || defined(_XOPEN_SOURCE) || defined(_GNU_SOURCE)
82
83 #ifndef WEXITSTATUS
84 #include <bits/wexitstatus.h>
85 #endif
86
87 int posix_memalign (void **, size_t, size_t);
88 int setenv (const char *, const char *, int);
89 int unsetenv (const char *);
90 int mkstemp (char *);
91 char *mkdtemp (char *);
92 int getsubopt (char **, char *const *, char **);
93 int rand_r (unsigned *);
94
95 #endif
96
97
98 #if defined(_XOPEN_SOURCE) || defined(_GNU_SOURCE)
99 int putenv (char *);
100 int posix_openpt (int);
101 int grantpt (int);
102 int unlockpt (int);
103 char *ptsname (int);
104 char *realpath (const char *, char *);
105 char *l64a (long);
106 long a64l (const char *);
107 void setkey (const char *);
108 long int random (void);
109 void srandom (unsigned int);
110 char *initstate (unsigned int, char *, size_t);
111 char *setstate (char *);
112 double drand48 (void);
113 double erand48 (unsigned short [3]);
114 long int lrand48 (void);
115 long int nrand48 (unsigned short [3]);
116 long mrand48 (void);
117 long jrand48 (unsigned short [3]);
118 void srand48 (long);
119 unsigned short *seed48 (unsigned short [3]);
120 void lcong48 (unsigned short [7]);
121 #endif
122
123 #if defined(_GNU_SOURCE)
124 char *mktemp (char *);
125 void *valloc (size_t);
126 void *memalign(size_t, size_t);
127 int clearenv(void);
128 int ptsname_r(int, char *, size_t);
129 #endif
130
131
132 #ifdef __cplusplus
133 }
134 #endif
135
136 #endif