Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
rapid7
GitHub Repository: rapid7/metasploit-framework
Path: blob/master/data/headers/windows/stdlib.h
21532 views
1
//
2
// License:
3
// https://github.com/rapid7/metasploit-framework/blob/master/LICENSE
4
//
5
6
typedef struct _div_t {
7
int quot;
8
int rem;
9
} div_t;
10
11
typedef struct _ldiv_t {
12
long quot;
13
long rem;
14
} ldiv_t;
15
16
typedef struct _lldiv_t {
17
long long quot;
18
long long rem;
19
} lldiv_t;
20
21
int rand(void);
22
void srand(unsigned);
23
void* malloc(size_t);
24
void* realloc(void*, size_t);
25
void free(void*);
26
double atof(const char*);
27
double strtod(const char*, char**);
28
float strtof(const char*, char**);
29
long int strtol(const char*, char**, int);
30
long double strtold(const char*, char**);
31
int atoi(const char*);
32
void abort(void);
33
void exit(int);
34
int atexit(void (*function)(void));
35
char* getenv(const char*);
36
int setenv(const char*, const char*, int);
37
int putenv(char*);
38
int unsetenv(const char*);
39
void *bsearch(const void*, const void*, size_t, size_t, int (*compar)(const void*, const void*));
40
void qsort(void*, size_t, size_t, int (*compar)(const void*, const void*));
41
int abs(int);
42
int mblen(const char*, size_t);
43
int system(const char*);
44
long int labs(long int);
45
div_t div(int, int);
46
ldiv_t ldiv(long int, long int);
47
void* malloc (size_t size);
48
49
50