|
XenevaOS
|
#include <stdlib.h>#include <ctype.h>#include <sys\_heap.h>#include <sys\_keproc.h>#include <sys\utf.h>#include <string.h>#include <stdarg.h>#include <limits.h>
Macros | |
| #define | MB_CUR_MAX MB_LEN_MAX |
Functions | |
| int | abs (int i) |
| int | atoi (const char *s) |
| double | atof (const char *nptr) |
| int | mblen (const char *s, size_t n) |
| size_t | mbstowcs (wchar_t *dest, const char *src, size_t n) |
| int | mbtowc (wchar_t *wc, const char *bytes, size_t n) |
| int | rand () |
| NOT IMPLEMENTED. | |
| int | wctomb (char *s, wchar_t wc) |
| size_t | wcstombs (char *dest, const wchar_t *src, size_t n) |
| char * | sztoa (size_t value, char *str, int base) |
| void | exit (int errno) |
| int | setenv (const char *name, const char *value, int overwrite) |
| char * | getenv (const char *name) |
| void | itoa_s (int i, unsigned base, char *buf) |
| long | strtol (const char *nptr, char **endptr, int base) |
| converts a string to a long | |
| unsigned long | strtoul (const char *nptr, char **endptr, int base) |
| converts a string to an unsigned long | |
| int | atexit (void(*func)(void)) |
| void | abort (void) |
| #define MB_CUR_MAX MB_LEN_MAX |
BSD 2-Clause License
Copyright (c) 2022-2023, Manas Kamal Choudhury All rights reserved.
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
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 HOLDER 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.
| void abort | ( | void | ) |
| int abs | ( | int | i | ) |
| int atexit | ( | void(*)(void) | func | ) |
| double atof | ( | const char * | nptr | ) |
| int atoi | ( | const char * | s | ) |
| void exit | ( | int | errno | ) |
| char * getenv | ( | const char * | name | ) |
| void itoa_s | ( | int | i, |
| unsigned | base, | ||
| char * | buf | ||
| ) |
| int mblen | ( | const char * | s, |
| size_t | n | ||
| ) |
| int rand | ( | void | ) |
NOT IMPLEMENTED.
| int setenv | ( | const char * | name, |
| const char * | value, | ||
| int | overwrite | ||
| ) |
| long strtol | ( | const char * | nptr, |
| char ** | endptr, | ||
| int | base | ||
| ) |
converts a string to a long
| unsigned long strtoul | ( | const char * | nptr, |
| char ** | endptr, | ||
| int | base | ||
| ) |
converts a string to an unsigned long
| char * sztoa | ( | size_t | value, |
| char * | str, | ||
| int | base | ||
| ) |
| int wctomb | ( | char * | s, |
| wchar_t | wc | ||
| ) |