sortix-mirror/libc/include/stdlib.h

221 lines
6.0 KiB
C
Raw Normal View History

/*
* Copyright (c) 2011-2017, 2022 Jonas 'Sortie' Termansen.
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
* stdlib.h
* Standard library definitions.
*/
2011-08-05 12:25:00 +00:00
#ifndef _INCLUDE_STDLIB_H
#define _INCLUDE_STDLIB_H
2011-08-05 12:25:00 +00:00
#include <sys/cdefs.h>
#if __USE_SORTIX || __USE_POSIX
#include <sys/__/types.h>
#endif
2014-07-19 19:08:25 +00:00
#if __USE_SORTIX
#include <stdint.h>
#endif
2013-01-14 18:24:37 +00:00
#include <sortix/wait.h>
2011-08-05 12:25:00 +00:00
#define EXIT_SUCCESS (0)
#define EXIT_FAILURE (1)
/* TODO: This random interface is stupid. What should a good value be? */
#define RAND_MAX 32767
2015-08-17 21:16:05 +00:00
#define MB_CUR_MAX 4
2013-03-19 07:59:26 +00:00
typedef struct
{
int quot;
int rem;
} div_t;
typedef struct
{
long quot;
long rem;
} ldiv_t;
#if 1999 <= __USE_C || defined(__cplusplus)
2013-03-19 07:59:26 +00:00
typedef struct
{
long long quot;
long long rem;
} lldiv_t;
#endif
2011-08-05 12:25:00 +00:00
2013-12-27 00:44:03 +00:00
#ifndef NULL
#define __need_NULL
#include <stddef.h>
#endif
#ifndef __size_t_defined
#define __size_t_defined
#define __need_size_t
#include <stddef.h>
#endif
#ifndef __wchar_t_defined
#define __wchar_t_defined
#define __need_wchar_t
#include <stddef.h>
#endif
2011-08-05 12:25:00 +00:00
#ifdef __cplusplus
extern "C" {
#endif
void abort(void) __attribute__ ((__noreturn__));
2012-03-27 14:24:51 +00:00
int abs(int value);
2012-05-28 22:05:27 +00:00
int atexit(void (*function)(void));
2013-03-19 21:10:27 +00:00
double atof(const char* value);
2011-11-09 22:48:26 +00:00
int atoi(const char*);
2012-03-05 11:53:58 +00:00
long atol(const char*);
void* bsearch(const void*, const void*, size_t, size_t, int (*)(const void*, const void*));
#ifdef __TRACE_ALLOCATION_SITES
void* calloc_trace(struct __allocation_site*, size_t, size_t);
#define calloc(a, b) calloc_trace(ALLOCATION_SITE, (a), (b))
#else
2011-12-24 03:05:38 +00:00
void* calloc(size_t, size_t);
#endif
2013-03-19 16:23:41 +00:00
char* canonicalize_file_name(const char* path);
char* canonicalize_file_name_at(int dirfd, const char* path);
int clearenv(void);
2013-03-19 07:59:26 +00:00
div_t div(int, int);
void exit(int) __attribute__ ((__noreturn__));
void _Exit(int status) __attribute__ ((__noreturn__));
2011-08-05 12:25:00 +00:00
void free(void*);
char* getenv(const char*);
2012-03-27 14:24:51 +00:00
long labs(long);
2013-03-19 07:59:26 +00:00
ldiv_t ldiv(long, long);
#ifdef __TRACE_ALLOCATION_SITES
void* malloc_trace(struct __allocation_site*, size_t);
#define malloc(a) malloc_trace(ALLOCATION_SITE, (a))
#else
2011-08-05 12:25:00 +00:00
void* malloc(size_t);
#endif
2013-04-22 08:16:09 +00:00
int mblen(const char*, size_t);
size_t mbstowcs(wchar_t* __restrict, const char* __restrict, size_t);
int mbtowc(wchar_t *__restrict, const char* __restrict, size_t);
2015-02-06 15:18:36 +00:00
char* mkdtemp(char*);
2015-06-02 11:33:32 +00:00
char* mkdtemps(char*, size_t);
2015-02-06 15:03:24 +00:00
int mkostemp(char*, int);
int mkostemps(char*, int, int);
2013-09-18 18:07:30 +00:00
int mkstemp(char*);
2015-02-06 15:03:24 +00:00
int mkstemps(char*, int);
2012-05-28 22:05:27 +00:00
int on_exit(void (*function)(int, void*), void* arg);
void qsort(void*, size_t, size_t, int (*)(const void*, const void*));
2014-03-09 15:08:01 +00:00
void qsort_r(void*, size_t, size_t, int (*)(const void*, const void*, void*), void*);
2014-12-09 14:23:27 +00:00
#if !defined(__is_sortix_libc) /* not a warning inside libc */
__attribute__((__warning__("rand() isn't random, use arc4random()")))
#endif
2011-11-10 11:27:31 +00:00
int rand(void);
#ifdef __TRACE_ALLOCATION_SITES
void* realloc_trace(struct __allocation_site*, void*, size_t);
#define realloc(a, b) realloc_trace(ALLOCATION_SITE, (a), (b))
#else
2012-02-12 23:31:05 +00:00
void* realloc(void*, size_t);
#endif
char* realpath(const char* __restrict, char* __restrict);
int setenv(const char*, const char*, int);
2014-12-09 14:23:27 +00:00
#if !defined(__is_sortix_libc) /* not a warning inside libc */
__attribute__((__warning__("srand() isn't random, use arc4random()")))
#endif
2013-03-19 12:48:59 +00:00
void srand(unsigned);
2013-03-23 18:20:44 +00:00
double strtod(const char* __restrict, char** __restrict);
float strtof(const char* __restrict, char** __restrict);
long strtol(const char* __restrict, char** __restrict, int);
2013-03-23 18:20:44 +00:00
long double strtold(const char* __restrict, char** __restrict);
unsigned long strtoul(const char* __restrict, char** __restrict, int);
2013-01-14 18:27:19 +00:00
int system(const char*);
int unsetenv(const char*);
size_t wcstombs(char* __restrict, const wchar_t *__restrict, size_t);
int wctomb(char*, wchar_t);
#if 1999 <= __USE_C || defined(__cplusplus)
long long atoll(const char*);
long long llabs(long long);
lldiv_t lldiv(long long, long long);
unsigned long long strtoull(const char* __restrict, char** __restrict, int);
long long strtoll(const char* __restrict, char** __restrict, int);
#endif
#if defined(__is_sortix_libc)
struct exit_handler
{
void (*hook)(int, void*);
void* param;
struct exit_handler* next;
};
extern struct exit_handler* __exit_handler_stack;
#endif
2012-09-28 22:53:50 +00:00
/* TODO: These are not implemented in sortix libc yet. */
#if 0
2011-08-05 12:25:00 +00:00
long a64l(const char* s);
double drand48(void);
double erand48(unsigned short [3]);
int getsubopt(char**, char* const *, char**);
char* initstate(unsigned, char*, size_t);
long jrand48(unsigned short [3]);
char* l64a(long);
void lcong48(unsigned short [7]);
long lrand48(void);
long mrand48(void);
long nrand48(unsigned short[3]);
int posix_memalign(void**, size_t, size_t);
long random(void);
2013-09-22 22:43:42 +00:00
int rand_r(unsigned *);
2011-08-05 12:25:00 +00:00
unsigned short *seed48(unsigned short [3]);
void setkey(const char*);
char* setstate(char*);
void srand48(long);
void srandom(unsigned);
#endif
2016-11-19 20:04:10 +00:00
#if __USE_SORTIX || __USE_XOPEN
int grantpt(int);
2016-11-19 20:15:29 +00:00
int unlockpt(int);
2016-11-19 20:22:29 +00:00
char* ptsname(int);
2016-11-19 20:04:10 +00:00
#endif
2016-11-19 19:45:53 +00:00
#if __USE_SORTIX || 600 <= __USE_XOPEN
int posix_openpt(int);
#endif
2014-07-19 19:08:25 +00:00
/* Functions copied from elsewhere. */
#if __USE_SORTIX
uint32_t arc4random(void);
void arc4random_buf(void*, size_t);
uint32_t arc4random_uniform(uint32_t);
#ifdef __TRACE_ALLOCATION_SITES
void* reallocarray_trace(struct __allocation_site*, void*, size_t, size_t);
#define reallocarray(a, b, c) reallocarray_trace(ALLOCATION_SITE, (a), (b), (c))
#else
2014-06-20 16:48:50 +00:00
void* reallocarray(void*, size_t, size_t);
#endif
2016-11-19 20:38:20 +00:00
int ptsname_r(int, char*, size_t);
2014-07-19 19:08:25 +00:00
#endif
2015-05-13 16:11:02 +00:00
#ifdef __cplusplus
} /* extern "C" */
#endif
2011-08-05 12:25:00 +00:00
#endif