]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - include/stdlib.h
Whitespace formatting
[FreeBSD/FreeBSD.git] / include / stdlib.h
1 /*-
2  * Copyright (c) 1990, 1993
3  *      The Regents of the University of California.  All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  * 3. All advertising materials mentioning features or use of this software
14  *    must display the following acknowledgement:
15  *      This product includes software developed by the University of
16  *      California, Berkeley and its contributors.
17  * 4. Neither the name of the University nor the names of its contributors
18  *    may be used to endorse or promote products derived from this software
19  *    without specific prior written permission.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31  * SUCH DAMAGE.
32  *
33  *      @(#)stdlib.h    8.5 (Berkeley) 5/19/95
34  * $FreeBSD$
35  */
36
37 #ifndef _STDLIB_H_
38 #define _STDLIB_H_
39
40 #include <sys/cdefs.h>
41
42 #include <machine/ansi.h>
43
44 #if !defined(_ANSI_SOURCE) && !defined(_POSIX_SOURCE)
45 #ifdef  _BSD_RUNE_T_
46 typedef _BSD_RUNE_T_    rune_t;
47 #undef  _BSD_RUNE_T_
48 #endif
49 #endif
50
51 #ifdef  _BSD_SIZE_T_
52 typedef _BSD_SIZE_T_    size_t;
53 #undef  _BSD_SIZE_T_
54 #endif
55
56 #ifdef  _BSD_WCHAR_T_
57 typedef _BSD_WCHAR_T_   wchar_t;
58 #undef  _BSD_WCHAR_T_
59 #endif
60
61 typedef struct {
62         int quot;               /* quotient */
63         int rem;                /* remainder */
64 } div_t;
65
66 typedef struct {
67         long quot;              /* quotient */
68         long rem;               /* remainder */
69 } ldiv_t;
70
71 #ifdef __LONG_LONG_SUPPORTED
72 typedef struct {
73         long long quot;
74         long long rem;
75 } lldiv_t;
76 #endif
77
78 #ifndef NULL
79 #define NULL    0
80 #endif
81
82 #define EXIT_FAILURE    1
83 #define EXIT_SUCCESS    0
84
85 #define RAND_MAX        0x7fffffff
86
87 extern int __mb_cur_max;
88 #define MB_CUR_MAX      __mb_cur_max
89
90 __BEGIN_DECLS
91 void     abort __P((void)) __dead2;
92 int      abs __P((int)) __pure2;
93 int      atexit __P((void (*)(void)));
94 double   atof __P((const char *));
95 int      atoi __P((const char *));
96 long     atol __P((const char *));
97 long long
98         atoll __P((const char *));
99 void    *bsearch __P((const void *, const void *, size_t,
100             size_t, int (*)(const void *, const void *)));
101 void    *calloc __P((size_t, size_t));
102 div_t    div __P((int, int)) __pure2;
103 void     exit __P((int)) __dead2;
104 void     free __P((void *));
105 char    *getenv __P((const char *));
106 long     labs __P((long)) __pure2;
107 ldiv_t   ldiv __P((long, long)) __pure2;
108 void    *malloc __P((size_t));
109 void     qsort __P((void *, size_t, size_t,
110             int (*)(const void *, const void *)));
111 int      rand __P((void));
112 void    *realloc __P((void *, size_t));
113 void     srand __P((unsigned));
114 double   strtod __P((const char *, char **));
115 long     strtol __P((const char *, char **, int));
116 long long        
117          strtoll __P((const char *, char **, int));
118 unsigned long
119          strtoul __P((const char *, char **, int));
120 unsigned long long
121          strtoull __P((const char *, char **, int));
122 int      system __P((const char *));
123
124 int      mblen __P((const char *, size_t));
125 size_t   mbstowcs __P((wchar_t *, const char *, size_t));
126 int      wctomb __P((char *, wchar_t));
127 int      mbtowc __P((wchar_t *, const char *, size_t));
128 size_t   wcstombs __P((char *, const wchar_t *, size_t));
129
130 #ifdef __LONG_LONG_SUPPORTED
131 long long
132          llabs __P((long long)) __pure2;
133 lldiv_t  lldiv __P((long long, long long)) __pure2;
134 #endif
135
136 #if !defined(_ANSI_SOURCE) && !defined(_POSIX_SOURCE)
137 extern char *_malloc_options;
138 extern void (*_malloc_message)__P((char *p1, char *p2, char *p3, char *p4));
139
140 int      putenv __P((const char *));
141 int      setenv __P((const char *, const char *, int));
142
143 double   drand48 __P((void));
144 double   erand48 __P((unsigned short[3]));
145 long     jrand48 __P((unsigned short[3]));
146 void     lcong48 __P((unsigned short[7]));
147 long     lrand48 __P((void));
148 long     mrand48 __P((void));
149 long     nrand48 __P((unsigned short[3]));
150 unsigned short
151         *seed48 __P((unsigned short[3]));
152 void     srand48 __P((long));
153
154 void    *alloca __P((size_t));          /* built-in for gcc */
155                                         /* getcap(3) functions */
156 __uint32_t
157          arc4random __P((void));
158 void     arc4random_addrandom __P((unsigned char *dat, int datlen));
159 void     arc4random_stir __P((void));
160 char    *getbsize __P((int *, long *));
161 char    *cgetcap __P((char *, char *, int));
162 int      cgetclose __P((void));
163 int      cgetent __P((char **, char **, char *));
164 int      cgetfirst __P((char **, char **));
165 int      cgetmatch __P((char *, char *));
166 int      cgetnext __P((char **, char **));
167 int      cgetnum __P((char *, char *, long *));
168 int      cgetset __P((char *));
169 int      cgetstr __P((char *, char *, char **));
170 int      cgetustr __P((char *, char *, char **));
171
172 int      daemon __P((int, int));
173 char    *devname __P((int, int));
174 int      getloadavg __P((double [], int));
175 const char *
176         getprogname __P((void));
177
178 char    *group_from_gid __P((unsigned long, int));
179 int      heapsort __P((void *, size_t, size_t,
180             int (*)(const void *, const void *)));
181 char    *initstate __P((unsigned long, char *, long));
182 int      mergesort __P((void *, size_t, size_t,
183             int (*)(const void *, const void *)));
184 int      radixsort __P((const unsigned char **, int, const unsigned char *,
185             unsigned));
186 int      sradixsort __P((const unsigned char **, int, const unsigned char *,
187             unsigned));
188 int      rand_r __P((unsigned *));
189 long     random __P((void));
190 void    *reallocf __P((void *, size_t));
191 char    *realpath __P((const char *, char resolved_path[]));
192 void     setprogname __P((const char *));
193 char    *setstate __P((char *));
194 void     srandom __P((unsigned long));
195 void     sranddev __P((void));
196 void     srandomdev __P((void));
197 char    *user_from_uid __P((unsigned long, int));
198 #ifndef __STRICT_ANSI__
199 __int64_t        strtoq __P((const char *, char **, int));
200 __uint64_t
201          strtouq __P((const char *, char **, int));
202 #endif
203 void     unsetenv __P((const char *));
204 #endif /* !_ANSI_SOURCE && !_POSIX_SOURCE */
205 __END_DECLS
206
207 #endif /* !_STDLIB_H_ */