D 1.0   D 2.0
About Japanese Translation

www.digitalmars.com
Last update Tue Oct 16 09:58:59 2007

std.c.stdlib

C の <stdlib.h>

Authors:
Walter Bright, Digital Mars, www.digitalmars.com

License:
Public Domain

struct div_t;
struct ldiv_t;
struct lldiv_t;
div_t div(int, int);
ldiv_t ldiv(int, int);
lldiv_t lldiv(long, long);
const int EXIT_SUCCESS;
const int EXIT_FAILURE;
int atexit(void function());
void exit(int);
void _exit(int);
int system(char*);
void* alloca(uint);
void* calloc(size_t, size_t);
void* malloc(size_t);
void* realloc(void*, size_t);
void free(void*);
void* bsearch(in void*, in void*, uint, uint, int function(void*, void*));
void qsort(void* base, uint nelems, uint elemsize, int function(void*, void*) compare);
char* getenv(char*);
ISO C 標準に対する拡張、全てのプラットフォームで使えるわけではない

int setenv(char*, char*, int);
ISO C 標準に対する拡張。全てのプラットフォームで使えるわけではない



void unsetenv(char*);
int rand();
void srand(uint);
int random(int num);
void randomize();
int getErrno();
int setErrno(int);
const int ERANGE;
double atof(in char*);
int atoi(in char*);
int atol(in char*);
float strtof(char*, char**);
double strtod(char*, char**);
real strtold(char*, char**);
long strtol(char*, char**, int);
uint strtoul(char*, char**, int);
long atoll(in char*);
long strtoll(char*, char**, int);
ulong strtoull(char*, char**, int);
char* itoa(int, char*, int);
char* ultoa(uint, char*, int);
int mblen(in char* s, uint n);
int mbtowc(wchar* pwc, char* s, uint n);
int wctomb(char* s, wchar wc);
uint mbstowcs(wchar* pwcs, in char* s, uint n);
uint wcstombs(in char* s, wchar* pwcs, uint n);
ISO C 標準に対する拡張。全てのプラットフォームで使えるわけではない