sortix-mirror/libc/include/stdlib.h

161 lines
4.6 KiB
C
Raw Normal View History

2012-03-27 14:24:51 +00:00
/*******************************************************************************
2011-08-05 12:25:00 +00:00
Copyright(C) Jonas 'Sortie' Termansen 2011, 2012.
2011-08-05 12:25:00 +00:00
This file is part of the Sortix C Library.
2011-08-05 12:25:00 +00:00
The Sortix C Library is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, either version 3 of the License, or (at your
option) any later version.
2011-08-05 12:25:00 +00:00
The Sortix C Library is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
License for more details.
2011-08-05 12:25:00 +00:00
You should have received a copy of the GNU Lesser General Public License
along with the Sortix C Library. If not, see <http://www.gnu.org/licenses/>.
2011-08-05 12:25:00 +00:00
stdlib.h
Standard library definitions.
2011-08-05 12:25:00 +00:00
2012-03-27 14:24:51 +00:00
*******************************************************************************/
2011-08-05 12:25:00 +00:00
#ifndef _STDLIB_H
#define _STDLIB_H 1
2011-08-05 12:25:00 +00:00
#include <features.h>
2013-01-14 18:24:37 +00:00
#include <sortix/wait.h>
2011-08-05 12:25:00 +00:00
__BEGIN_DECLS
#define EXIT_SUCCESS (0)
#define EXIT_FAILURE (1)
/* TODO: This random interface is stupid. What should a good value be? */
#define RAND_MAX 32767
/* TODO: This is just a value. It's not a compile time constant! */
#define MB_CUR_MAX 16
2013-03-19 07:59:26 +00:00
typedef struct
{
int quot;
int rem;
} div_t;
typedef struct
{
long quot;
long rem;
} ldiv_t;
typedef struct
{
long long quot;
long long rem;
} lldiv_t;
2011-08-05 12:25:00 +00:00
@include(NULL.h)
@include(size_t.h)
@include(wchar_t.h)
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));
2011-11-09 22:48:26 +00:00
int atoi(const char*);
2012-03-05 11:53:58 +00:00
long atol(const char*);
long long atoll(const char*);
void* bsearch(const void*, const void*, size_t, size_t, int (*)(const void*, const void*));
2011-12-24 03:05:38 +00:00
void* calloc(size_t, size_t);
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*);
2012-03-27 14:24:51 +00:00
long labs(long);
2013-03-19 07:59:26 +00:00
ldiv_t ldiv(long, long);
2012-03-27 14:24:51 +00:00
long long llabs(long long);
2013-03-19 07:59:26 +00:00
lldiv_t lldiv(long long, long long);
2011-08-05 12:25:00 +00:00
void* malloc(size_t);
int mbtowc(wchar_t *restrict, const char* restrict, size_t);
#if !defined(_SORTIX_SOURCE)
char* mktemp(char* templ);
#endif
2012-05-28 22:05:27 +00:00
int on_exit(void (*function)(int, void*), void* arg);
int putenv(char*);
void qsort(void*, size_t, size_t, int (*)(const void*, const void*));
2011-11-10 11:27:31 +00:00
int rand(void);
2012-02-12 23:31:05 +00:00
void* realloc(void*, size_t);
int setenv(const char*, const char*, int);
2011-12-16 15:49:27 +00:00
long strtol(const char* restrict, char** restrict, int);
unsigned long strtoul(const char* restrict, char** restrict, int);
unsigned long long strtoull(const char* restrict, char** restrict, int);
long long strtoll(const char* restrict, char** restrict, int);
2013-01-14 18:27:19 +00:00
int system(const char*);
int unsetenv(const char*);
int wctomb(char*, wchar_t);
#if defined(_SORTIX_SOURCE) || defined(_WANT_SORTIX_ENV)
const char* const* getenviron(void);
size_t envlength(void);
const char* getenvindexed(size_t index);
const char* sortix_getenv(const char* name);
#endif
#if (defined(_SOURCE_SOURCE) && __SORTIX_STDLIB_REDIRECTS) || \
defined(_WANT_SORTIX_ENV)
const char* getenv(const char* name) asm ("sortix_getenv");
#else
char* getenv(const char*);
#endif
#if defined(_SORTIX_SOURCE) || defined(_SVID_SOURCE) || defined(_XOPEN_SOURCE) \
|| defined(_GNU_SOURCE) || defined(_BSD_SOURCE)
int clearenv(void);
#endif
2011-08-05 12:25:00 +00:00
2012-09-28 22:53:50 +00:00
/* TODO: These are not implemented in sortix libc yet. */
#if defined(__SORTIX_SHOW_UNIMPLEMENTED)
2011-08-05 12:25:00 +00:00
long a64l(const char* s);
double atof(const char* value);
double drand48(void);
double erand48(unsigned short [3]);
int getsubopt(char**, char* const *, char**);
int grantpt(int);
char* initstate(unsigned, char*, size_t);
long jrand48(unsigned short [3]);
char* l64a(long);
void lcong48(unsigned short [7]);
long lrand48(void);
int mblen(const char*, size_t);
size_t mbstowcs(wchar_t *restrict, const char* restrict, size_t);
char* mkdtemp(char*);
int mkstemp(char*);
long mrand48(void);
long nrand48(unsigned short[3]);
int posix_memalign(void**, size_t, size_t);
int posix_openpt(int);
char* ptsname(int);
long random(void);
char* realpath(const char* restrict, char* restrict);
unsigned short *seed48(unsigned short [3]);
void setkey(const char*);
char* setstate(char*);
void srand(unsigned);
void srand48(long);
void srandom(unsigned);
double strtod(const char* restrict, char** restrict);
float strtof(const char* restrict, char** restrict);
long double strtold(const char* restrict, char** restrict);
int unlockpt(int);
size_t wcstombs(char* restrict, const wchar_t *restrict, size_t);
#if __POSIX_OBSOLETE <= 200801
int rand_r(unsigned *);
#endif
#endif
__END_DECLS
#endif