2009-03-04 04:28:35 +01:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2008 The Android Open Source Project
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* * Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* * Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in
|
|
|
|
* the documentation and/or other materials provided with the
|
|
|
|
* distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
|
|
|
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|
|
|
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
|
|
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
|
|
|
|
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
|
|
|
|
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
|
|
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
|
|
|
|
* OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*/
|
2015-01-26 22:34:58 +01:00
|
|
|
|
|
|
|
#ifndef _STDLIB_H
|
|
|
|
#define _STDLIB_H
|
2009-03-04 04:28:35 +01:00
|
|
|
|
|
|
|
#include <sys/cdefs.h>
|
2015-01-26 22:34:58 +01:00
|
|
|
#include <xlocale.h>
|
2009-03-04 04:28:35 +01:00
|
|
|
|
|
|
|
#include <alloca.h>
|
2015-01-26 22:34:58 +01:00
|
|
|
#include <malloc.h>
|
|
|
|
#include <stddef.h>
|
2009-03-04 04:28:35 +01:00
|
|
|
|
|
|
|
__BEGIN_DECLS
|
|
|
|
|
|
|
|
#define EXIT_FAILURE 1
|
|
|
|
#define EXIT_SUCCESS 0
|
|
|
|
|
|
|
|
extern __noreturn void abort(void);
|
2014-04-09 02:14:01 +02:00
|
|
|
extern __noreturn void exit(int);
|
2016-04-29 21:00:55 +02:00
|
|
|
extern __noreturn void _Exit(int) __INTRODUCED_IN(21);
|
2009-03-04 04:28:35 +01:00
|
|
|
extern int atexit(void (*)(void));
|
|
|
|
|
2016-06-11 01:33:05 +02:00
|
|
|
int at_quick_exit(void (*)(void)) __INTRODUCED_IN(21);
|
|
|
|
void quick_exit(int) __noreturn __INTRODUCED_IN(21);
|
2014-04-30 02:49:06 +02:00
|
|
|
|
2014-04-23 02:41:00 +02:00
|
|
|
extern char* getenv(const char*);
|
|
|
|
extern int putenv(char*);
|
|
|
|
extern int setenv(const char*, const char*, int);
|
|
|
|
extern int unsetenv(const char*);
|
2009-03-04 04:28:35 +01:00
|
|
|
extern int clearenv(void);
|
|
|
|
|
2013-12-18 05:43:30 +01:00
|
|
|
extern char* mkdtemp(char*);
|
2015-02-24 01:42:07 +01:00
|
|
|
extern char* mktemp(char*) __attribute__((deprecated("mktemp is unsafe, use mkstemp or tmpfile instead")));
|
2014-09-24 02:34:29 +02:00
|
|
|
|
2016-04-29 21:00:55 +02:00
|
|
|
extern int mkostemp64(char*, int) __INTRODUCED_IN(23);
|
|
|
|
extern int mkostemp(char*, int) __INTRODUCED_IN(23);
|
|
|
|
extern int mkostemps64(char*, int, int) __INTRODUCED_IN(23);
|
|
|
|
extern int mkostemps(char*, int, int) __INTRODUCED_IN(23);
|
|
|
|
extern int mkstemp64(char*) __INTRODUCED_IN(21);
|
2014-09-24 02:34:29 +02:00
|
|
|
extern int mkstemp(char*);
|
2016-04-29 21:00:55 +02:00
|
|
|
extern int mkstemps64(char*, int) __INTRODUCED_IN(23);
|
2014-09-24 02:34:29 +02:00
|
|
|
extern int mkstemps(char*, int);
|
2009-03-04 04:28:35 +01:00
|
|
|
|
|
|
|
extern long strtol(const char *, char **, int);
|
|
|
|
extern long long strtoll(const char *, char **, int);
|
|
|
|
extern unsigned long strtoul(const char *, char **, int);
|
|
|
|
extern unsigned long long strtoull(const char *, char **, int);
|
|
|
|
|
2016-04-29 21:00:55 +02:00
|
|
|
extern int posix_memalign(void** memptr, size_t alignment, size_t size) __INTRODUCED_IN(16);
|
2011-12-15 05:50:01 +01:00
|
|
|
|
2016-04-14 02:18:20 +02:00
|
|
|
__BIONIC_LEGACY_INLINE double atof(const char*);
|
2014-04-22 21:32:49 +02:00
|
|
|
|
|
|
|
extern double strtod(const char*, char**) __LIBC_ABI_PUBLIC__;
|
2016-04-14 02:18:20 +02:00
|
|
|
__BIONIC_LEGACY_INLINE float strtof(const char*, char**) __LIBC_ABI_PUBLIC__;
|
2016-04-29 21:00:55 +02:00
|
|
|
extern long double strtold(const char*, char**) __LIBC_ABI_PUBLIC__ __INTRODUCED_IN(21);
|
2009-03-04 04:28:35 +01:00
|
|
|
|
2016-04-29 21:00:55 +02:00
|
|
|
extern long double strtold_l(const char*, char**, locale_t) __LIBC_ABI_PUBLIC__ __INTRODUCED_IN(21);
|
|
|
|
extern long long strtoll_l(const char*, char**, int, locale_t) __LIBC_ABI_PUBLIC__
|
|
|
|
__INTRODUCED_IN(21);
|
|
|
|
extern unsigned long long strtoull_l(const char*, char**, int, locale_t) __LIBC_ABI_PUBLIC__
|
|
|
|
__INTRODUCED_IN(21);
|
2014-07-10 00:51:34 +02:00
|
|
|
|
2014-03-13 00:12:57 +01:00
|
|
|
extern int atoi(const char*) __purefunc;
|
|
|
|
extern long atol(const char*) __purefunc;
|
|
|
|
extern long long atoll(const char*) __purefunc;
|
2009-03-04 04:28:35 +01:00
|
|
|
|
2016-04-14 02:18:20 +02:00
|
|
|
__BIONIC_LEGACY_INLINE int abs(int) __pure2;
|
|
|
|
__BIONIC_LEGACY_INLINE long labs(long) __pure2;
|
|
|
|
__BIONIC_LEGACY_INLINE long long llabs(long long) __pure2;
|
2009-03-04 04:28:35 +01:00
|
|
|
|
|
|
|
extern char * realpath(const char *path, char *resolved);
|
2015-01-29 19:52:53 +01:00
|
|
|
extern int system(const char *string);
|
2009-03-04 04:28:35 +01:00
|
|
|
|
|
|
|
extern void * bsearch(const void *key, const void *base0,
|
|
|
|
size_t nmemb, size_t size,
|
|
|
|
int (*compar)(const void *, const void *));
|
|
|
|
|
|
|
|
extern void qsort(void *, size_t, size_t, int (*)(const void *, const void *));
|
|
|
|
|
2014-10-28 20:04:02 +01:00
|
|
|
uint32_t arc4random(void);
|
|
|
|
uint32_t arc4random_uniform(uint32_t);
|
2014-06-21 07:49:20 +02:00
|
|
|
void arc4random_buf(void*, size_t);
|
2009-03-04 04:28:35 +01:00
|
|
|
|
|
|
|
#define RAND_MAX 0x7fffffff
|
2014-06-12 20:48:04 +02:00
|
|
|
|
2016-04-14 02:18:20 +02:00
|
|
|
__BIONIC_LEGACY_INLINE int rand(void);
|
2016-04-29 21:00:55 +02:00
|
|
|
int rand_r(unsigned int*) __INTRODUCED_IN(21);
|
2016-04-14 02:18:20 +02:00
|
|
|
__BIONIC_LEGACY_INLINE void srand(unsigned int);
|
2014-06-12 20:48:04 +02:00
|
|
|
|
2014-11-06 21:40:08 +01:00
|
|
|
double drand48(void);
|
|
|
|
double erand48(unsigned short[3]);
|
|
|
|
long jrand48(unsigned short[3]);
|
2016-04-29 21:00:55 +02:00
|
|
|
void lcong48(unsigned short[7]) __INTRODUCED_IN(23);
|
2014-11-06 21:40:08 +01:00
|
|
|
long lrand48(void);
|
|
|
|
long mrand48(void);
|
|
|
|
long nrand48(unsigned short[3]);
|
|
|
|
unsigned short* seed48(unsigned short[3]);
|
|
|
|
void srand48(long);
|
|
|
|
|
2016-04-29 21:00:55 +02:00
|
|
|
char* initstate(unsigned int, char*, size_t) __INTRODUCED_IN(21);
|
2016-04-14 02:18:20 +02:00
|
|
|
__BIONIC_LEGACY_INLINE long random(void);
|
2016-04-29 21:00:55 +02:00
|
|
|
char* setstate(char*) __INTRODUCED_IN(21);
|
2016-04-14 02:18:20 +02:00
|
|
|
__BIONIC_LEGACY_INLINE void srandom(unsigned int);
|
2009-03-04 04:28:35 +01:00
|
|
|
|
2014-07-26 02:24:00 +02:00
|
|
|
int getpt(void);
|
2016-04-14 02:18:20 +02:00
|
|
|
__BIONIC_LEGACY_INLINE int grantpt(int);
|
2016-04-29 21:00:55 +02:00
|
|
|
int posix_openpt(int) __INTRODUCED_IN(21);
|
2014-12-10 05:30:23 +01:00
|
|
|
char* ptsname(int);
|
2014-07-26 02:24:00 +02:00
|
|
|
int ptsname_r(int, char*, size_t);
|
|
|
|
int unlockpt(int);
|
2009-03-04 04:28:35 +01:00
|
|
|
|
2016-04-29 22:45:25 +02:00
|
|
|
int getsubopt(char**, char* const*, char**) __INTRODUCED_IN_FUTURE;
|
2016-04-05 02:34:04 +02:00
|
|
|
|
2009-03-04 04:28:35 +01:00
|
|
|
typedef struct {
|
|
|
|
int quot;
|
|
|
|
int rem;
|
|
|
|
} div_t;
|
|
|
|
|
2014-06-11 05:47:49 +02:00
|
|
|
extern div_t div(int, int) __pure2;
|
2009-03-04 04:28:35 +01:00
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
long int quot;
|
|
|
|
long int rem;
|
|
|
|
} ldiv_t;
|
|
|
|
|
2014-06-11 05:47:49 +02:00
|
|
|
extern ldiv_t ldiv(long, long) __pure2;
|
2009-03-04 04:28:35 +01:00
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
long long int quot;
|
|
|
|
long long int rem;
|
|
|
|
} lldiv_t;
|
|
|
|
|
2014-06-11 05:47:49 +02:00
|
|
|
extern lldiv_t lldiv(long long, long long) __pure2;
|
2009-03-04 04:28:35 +01:00
|
|
|
|
2014-03-01 01:23:27 +01:00
|
|
|
/* BSD compatibility. */
|
2016-04-29 21:00:55 +02:00
|
|
|
extern const char* getprogname(void) __INTRODUCED_IN(21);
|
|
|
|
extern void setprogname(const char*) __INTRODUCED_IN(21);
|
2014-03-01 01:23:27 +01:00
|
|
|
|
2016-04-29 22:45:25 +02:00
|
|
|
int mblen(const char*, size_t) __INTRODUCED_IN_FUTURE;
|
2016-04-28 23:54:52 +02:00
|
|
|
size_t mbstowcs(wchar_t*, const char*, size_t);
|
2016-04-29 21:00:55 +02:00
|
|
|
int mbtowc(wchar_t*, const char*, size_t) __INTRODUCED_IN(21);
|
|
|
|
int wctomb(char*, wchar_t) __INTRODUCED_IN(21);
|
2016-04-28 23:54:52 +02:00
|
|
|
size_t wcstombs(char*, const wchar_t*, size_t);
|
2010-10-09 17:56:55 +02:00
|
|
|
|
2016-04-29 21:00:55 +02:00
|
|
|
extern size_t __ctype_get_mb_cur_max(void) __INTRODUCED_IN(21);
|
2014-08-14 22:56:51 +02:00
|
|
|
#define MB_CUR_MAX __ctype_get_mb_cur_max()
|
2009-03-04 04:28:35 +01:00
|
|
|
|
2015-04-18 19:04:19 +02:00
|
|
|
#if defined(__BIONIC_FORTIFY)
|
|
|
|
|
|
|
|
extern char* __realpath_real(const char*, char*) __RENAME(realpath);
|
|
|
|
__errordecl(__realpath_size_error, "realpath output parameter must be NULL or a >= PATH_MAX bytes buffer");
|
|
|
|
|
|
|
|
#if !defined(__clang__)
|
|
|
|
__BIONIC_FORTIFY_INLINE
|
|
|
|
char* realpath(const char* path, char* resolved) {
|
|
|
|
size_t bos = __bos(resolved);
|
|
|
|
|
|
|
|
/* PATH_MAX is unavailable without polluting the namespace, but it's always 4096 on Linux */
|
|
|
|
if (bos != __BIONIC_FORTIFY_UNKNOWN_SIZE && bos < 4096) {
|
|
|
|
__realpath_size_error();
|
|
|
|
}
|
|
|
|
|
|
|
|
return __realpath_real(path, resolved);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* defined(__BIONIC_FORTIFY) */
|
|
|
|
|
2009-03-04 04:28:35 +01:00
|
|
|
__END_DECLS
|
|
|
|
|
2016-04-14 02:18:20 +02:00
|
|
|
#include <android/legacy_stdlib_inlines.h>
|
|
|
|
|
2015-01-26 22:34:58 +01:00
|
|
|
#endif /* _STDLIB_H */
|