/* * Copyright (c) 2005 Martin Decky * 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. * - The name of the author may not be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. */ /** @addtogroup libc * @{ */ /** @file */ #ifndef LIBC_STDLIB_H_ #define LIBC_STDLIB_H_ #ifdef __cplusplus extern "C" { #endif #include <_bits/size_t.h> #include <_bits/wchar_t.h> #include #include #include /** Type returned by the div function */ typedef struct { /** Quotient */ int quot; /** Remainder */ int rem; } div_t; /** Type returned by the ldiv function */ typedef struct { /** Quotient */ long quot; /** Remainder */ long rem; } ldiv_t; /** Type returned by the lldiv function */ typedef struct { /** Quotient */ long long quot; /** Remainder */ long long rem; } lldiv_t; #define EXIT_FAILURE 1 #define EXIT_SUCCESS 0 #define RAND_MAX 714025 #define MB_CUR_MAX 4 extern long double strtold(const char *, char **); extern int rand(void); extern void srand(unsigned int); extern void abort(void) __attribute__((noreturn)); extern int atexit(void (*)(void)); extern void exit(int) __attribute__((noreturn)); extern void _Exit(int) __attribute__((noreturn)); extern int at_quick_exit(void (*)(void)); extern void quick_exit(int); extern char *getenv(const char *); extern int system(const char *); extern int abs(int); extern long labs(long); extern long long llabs(long long); extern int atoi(const char *); extern long atol(const char *); extern long long atoll(const char *); extern long strtol(const char *__restrict__, char **__restrict__, int); extern long long strtoll(const char *__restrict__, char **__restrict__, int); extern unsigned long strtoul(const char *__restrict__, char **__restrict__, int); extern unsigned long long strtoull(const char *__restrict__, char **__restrict__, int); extern div_t div(int, int); extern ldiv_t ldiv(long, long); extern lldiv_t lldiv(long long, long long); #ifdef __cplusplus } #endif #endif /** @} */