sortix-mirror/libmaxsi/include/stdlib.h

129 lines
3.8 KiB
C
Raw Normal View History

2011-08-05 12:25:00 +00:00
/******************************************************************************
COPYRIGHT(C) JONAS 'SORTIE' TERMANSEN 2011.
This file is part of LibMaxsi.
LibMaxsi 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.
LibMaxsi 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.
You should have received a copy of the GNU Lesser General Public License
along with LibMaxsi. If not, see <http://www.gnu.org/licenses/>.
stdlib.h
Standard library definitions.
******************************************************************************/
#ifndef _STDLIB_H
#define _STDLIB_H 1
#include <features.h>
__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: MB_CUR_MAX is missing here */
/* TODO: div_t, ldiv_t, and lldiv_t is missing here */
typedef int div_t, ldiv_t, lldiv_t;
@include(NULL.h)
@include(size_t.h)
@include(wchar_t.h)
/* TODO: WEXITSTATUS, WIFEXITED, WIFSIGNALED, WIFSTOPPED, WNOHANG, WSTOPSIG, WTERMSIG, WUNTRACED is missing here */
2012-03-04 20:49:03 +00:00
void abort(void);
2011-11-09 22:48:26 +00:00
int atoi(const char*);
2011-12-24 03:05:38 +00:00
void* calloc(size_t, size_t);
2011-08-05 12:25:00 +00:00
void exit(int);
void _Exit(int status);
2011-08-05 12:25:00 +00:00
void free(void*);
2012-03-04 22:55:41 +00:00
char* getenv(const char*);
2011-08-05 12:25:00 +00:00
void* malloc(size_t);
2011-11-10 11:27:31 +00:00
int rand(void);
2012-02-12 23:31:05 +00:00
void* realloc(void*, size_t);
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);
2011-08-05 12:25:00 +00:00
/* TODO: These are not implemented in libmaxsi/sortix yet. */
#if defined(__SORTIX_SHOW_UNIMPLEMENTED)
2011-08-05 12:25:00 +00:00
long a64l(const char* s);
int abs(int value);
int atexit(void (*function)(void));
double atof(const char* value);
int atoi(const char*);
long atol(const char*);
long long atoll(const char*);
void* bsearch(const void*, const void*, size_t, size_t, int (*)(const void*, const void*));
div_t div(int, int);
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);
long labs(long);
void lcong48(unsigned short [7]);
ldiv_t ldiv(long, long);
long long llabs(long long);
lldiv_t lldiv(long long, long long);
long lrand48(void);
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);
char* mkdtemp(char*);
int mkstemp(char*);
#if !defined(_SORTIX_SOURCE)
char* mktemp(char* templ);
#endif
2011-08-05 12:25:00 +00:00
long mrand48(void);
long nrand48(unsigned short[3]);
int posix_memalign(void**, size_t, size_t);
int posix_openpt(int);
char* ptsname(int);
int putenv(char*);
void qsort(void*, size_t, size_t, int (*)(const void*, const void*));
long random(void);
char* realpath(const char* restrict, char* restrict);
unsigned short *seed48(unsigned short [3]);
int setenv(const char*, const char*, int);
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 system(const char*);
int unlockpt(int);
int unsetenv(const char*);
size_t wcstombs(char* restrict, const wchar_t *restrict, size_t);
int wctomb(char*, wchar_t);
#if __POSIX_OBSOLETE <= 200801
int rand_r(unsigned *);
#endif
#endif
__END_DECLS
#endif