* ctype/ctype.h (isascii_l, toascii_l): Define to __*_l counterparts.
[platform/upstream/glibc.git] / include / stdlib.h
1 #ifndef _STDLIB_H
2
3 #ifdef __need_malloc_and_calloc
4 #define __Need_M_And_C
5 #endif
6
7 #include <stddef.h>
8 #include <stdlib/stdlib.h>
9
10 /* Now define the internal interfaces.  */
11 #ifndef __Need_M_And_C
12
13 extern __typeof (strtol_l) __strtol_l;
14 extern __typeof (strtoul_l) __strtoul_l;
15 extern __typeof (strtoll_l) __strtoll_l;
16 extern __typeof (strtoull_l) __strtoull_l;
17 extern __typeof (strtod_l) __strtod_l;
18 extern __typeof (strtof_l) __strtof_l;
19 extern __typeof (strtold_l) __strtold_l;
20
21 libc_hidden_proto (exit)
22 libc_hidden_proto (abort)
23 libc_hidden_proto (getenv)
24 libc_hidden_proto (bsearch)
25 libc_hidden_proto (qsort)
26 libc_hidden_proto (ecvt_r)
27 libc_hidden_proto (fcvt_r)
28 libc_hidden_proto (qecvt_r)
29 libc_hidden_proto (qfcvt_r)
30 libc_hidden_proto (lrand48_r)
31 libc_hidden_proto (wctomb)
32 libc_hidden_proto (__secure_getenv)
33 libc_hidden_proto (__strtof_internal)
34 libc_hidden_proto (__strtod_internal)
35 libc_hidden_proto (__strtold_internal)
36 libc_hidden_proto (__strtol_internal)
37 libc_hidden_proto (__strtoll_internal)
38 libc_hidden_proto (__strtoul_internal)
39 libc_hidden_proto (__strtoull_internal)
40
41 extern long int __random (void);
42 extern void __srandom (unsigned int __seed);
43 extern char *__initstate (unsigned int __seed, char *__statebuf,
44                           size_t __statelen);
45 extern char *__setstate (char *__statebuf);
46 extern int __random_r (struct random_data *__buf, int32_t *__result);
47 extern int __srandom_r (unsigned int __seed, struct random_data *__buf);
48 extern int __initstate_r (unsigned int __seed, char *__statebuf,
49                           size_t __statelen, struct random_data *__buf);
50 extern int __setstate_r (char *__statebuf, struct random_data *__buf);
51 extern int __rand_r (unsigned int *__seed);
52 extern int __erand48_r (unsigned short int __xsubi[3],
53                         struct drand48_data *__buffer, double *__result);
54 extern int __nrand48_r (unsigned short int __xsubi[3],
55                         struct drand48_data *__buffer,
56                         long int *__result);
57 extern int __jrand48_r (unsigned short int __xsubi[3],
58                         struct drand48_data *__buffer,
59                         long int *__result);
60 extern int __srand48_r (long int __seedval,
61                         struct drand48_data *__buffer);
62 extern int __seed48_r (unsigned short int __seed16v[3],
63                        struct drand48_data *__buffer);
64 extern int __lcong48_r (unsigned short int __param[7],
65                         struct drand48_data *__buffer);
66
67 /* Internal function to compute next state of the generator.  */
68 extern int __drand48_iterate (unsigned short int __xsubi[3],
69                               struct drand48_data *__buffer);
70
71 /* Global state for non-reentrant functions.  Defined in drand48-iter.c.  */
72 extern struct drand48_data __libc_drand48_data attribute_hidden;
73
74 extern int __setenv (__const char *__name, __const char *__value,
75                      int __replace);
76 extern int __unsetenv (__const char *__name);
77 extern int __clearenv (void);
78 extern char *__canonicalize_file_name (__const char *__name);
79 extern char *__realpath (__const char *__name, char *__resolved);
80 extern int __ptsname_r (int __fd, char *__buf, size_t __buflen);
81 extern int __getpt (void);
82 extern int __posix_openpt (int __oflag);
83
84 extern int __add_to_environ (const char *name, const char *value,
85                              const char *combines, int replace);
86
87 extern void _quicksort (void *const pbase, size_t total_elems,
88                         size_t size, __compar_fn_t cmp);
89
90 extern int __on_exit (void (*__func) (int __status, void *__arg), void *__arg);
91
92 extern int __cxa_atexit (void (*func) (void *), void *arg, void *d);
93 extern int __cxa_atexit_internal (void (*func) (void *), void *arg, void *d)
94      attribute_hidden;
95
96 extern void __cxa_finalize (void *d);
97
98 extern int __posix_memalign (void **memptr, size_t alignment, size_t size)
99      __attribute_malloc__;
100 extern void *__libc_memalign (size_t alignment, size_t size)
101      __attribute_malloc__;
102
103 extern int __libc_system (const char *line);
104
105 extern double ____strtod_l_internal (__const char *__restrict __nptr,
106                                      char **__restrict __endptr, int __group,
107                                      __locale_t __loc) __THROW;
108 extern float ____strtof_l_internal (__const char *__restrict __nptr,
109                                     char **__restrict __endptr, int __group,
110                                     __locale_t __loc) __THROW;
111 extern long double ____strtold_l_internal (__const char *__restrict __nptr,
112                                            char **__restrict __endptr,
113                                            int __group, __locale_t __loc)
114      __THROW;
115 extern long int ____strtol_l_internal (__const char *__restrict __nptr,
116                                        char **__restrict __endptr,
117                                        int __base, int __group,
118                                        __locale_t __loc) __THROW;
119 extern unsigned long int ____strtoul_l_internal (__const char *
120                                                  __restrict __nptr,
121                                                  char **__restrict __endptr,
122                                                  int __base, int __group,
123                                                  __locale_t __loc) __THROW;
124 __extension__
125 extern long long int ____strtoll_l_internal (__const char *__restrict __nptr,
126                                              char **__restrict __endptr,
127                                              int __base, int __group,
128                                              __locale_t __loc) __THROW;
129 __extension__
130 extern unsigned long long int ____strtoull_l_internal (__const char *
131                                                        __restrict __nptr,
132                                                        char **
133                                                        __restrict __endptr,
134                                                        int __base, int __group,
135                                                        __locale_t __loc)
136      __THROW;
137
138 libc_hidden_proto (____strtof_l_internal)
139 libc_hidden_proto (____strtod_l_internal)
140 libc_hidden_proto (____strtold_l_internal)
141 libc_hidden_proto (____strtol_l_internal)
142 libc_hidden_proto (____strtoll_l_internal)
143 libc_hidden_proto (____strtoul_l_internal)
144 libc_hidden_proto (____strtoull_l_internal)
145
146 extern __inline double
147 __strtod_l (__const char *__restrict __nptr, char **__restrict __endptr,
148             __locale_t __loc) __THROW
149 {
150   return ____strtod_l_internal (__nptr, __endptr, 0, __loc);
151 }
152 extern __inline long int
153 __strtol_l (__const char *__restrict __nptr, char **__restrict __endptr,
154             int __base, __locale_t __loc) __THROW
155 {
156   return ____strtol_l_internal (__nptr, __endptr, __base, 0, __loc);
157 }
158 extern __inline unsigned long int
159 __strtoul_l (__const char *__restrict __nptr, char **__restrict __endptr,
160              int __base, __locale_t __loc) __THROW
161 {
162   return ____strtoul_l_internal (__nptr, __endptr, __base, 0, __loc);
163 }
164 extern __inline float
165 __strtof_l (__const char *__restrict __nptr, char **__restrict __endptr,
166             __locale_t __loc) __THROW
167 {
168   return ____strtof_l_internal (__nptr, __endptr, 0, __loc);
169 }
170 extern __inline long double
171 __strtold_l (__const char *__restrict __nptr, char **__restrict __endptr,
172              __locale_t __loc) __THROW
173 {
174   return ____strtold_l_internal (__nptr, __endptr, 0, __loc);
175 }
176 __extension__ extern __inline long long int
177 __strtoll_l (__const char *__restrict __nptr, char **__restrict __endptr,
178              int __base, __locale_t __loc) __THROW
179 {
180   return ____strtoll_l_internal (__nptr, __endptr, __base, 0, __loc);
181 }
182 __extension__ extern __inline unsigned long long int
183 __strtoull_l (__const char * __restrict __nptr, char **__restrict __endptr,
184               int __base, __locale_t __loc) __THROW
185 {
186   return ____strtoull_l_internal (__nptr, __endptr, __base, 0, __loc);
187 }
188
189
190 # ifndef NOT_IN_libc
191 #  undef MB_CUR_MAX
192 #  define MB_CUR_MAX (_NL_CURRENT_WORD (LC_CTYPE, _NL_CTYPE_MB_CUR_MAX))
193
194 # define __cxa_atexit(func, arg, d) INTUSE(__cxa_atexit) (func, arg, d)
195 # endif
196
197 #endif
198
199 extern void * __default_morecore (ptrdiff_t);
200 libc_hidden_proto (__default_morecore)
201
202 #undef __Need_M_And_C
203
204 #endif  /* include/stdlib.h */