PSXSDK
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros
Macros | Typedefs | Functions
stdlib.h File Reference

Go to the source code of this file.

Macros

#define RAND_MAX   0x7fffffff
 
#define EXIT_SUCCESS   0
 
#define EXIT_FAILURE   1
 

Typedefs

typedef unsigned int size_t
 
typedef signed int ssize_t
 

Functions

int atoi (const char *s)
 
long atol (const char *s)
 
char * itoa (int value, char *str, int base)
 
char * ltoa (long value, char *str, int base)
 
char * lltoa (long long value, char *str, int base)
 
char * utoa (unsigned int value, char *str, int base)
 
char * ultoa (unsigned long value, char *str, int base)
 
char * ulltoa (unsigned long long value, char *str, int base)
 
int rand (void)
 
void srand (unsigned int seed)
 
void qsort (void *base, size_t nmemb, size_t size, int(*compar)(const void *, const void *))
 
void * malloc (size_t size)
 
void free (void *buf)
 
void * calloc (size_t number, size_t size)
 
void * realloc (void *buf, size_t n)
 
int abs (int x)
 
long long strtoll (const char *nptr, char **endptr, int base)
 
long strtol (const char *nptr, char **endptr, int base)
 
double strtod (const char *nptr, char **endptr)
 
long double strtold (const char *nptr, char **endptr)
 
float strtof (const char *nptr, char **endptr)
 
void abort (void)
 
void exit (int status)
 
void call_atexit_callbacks (void)
 

Macro Definition Documentation

#define EXIT_FAILURE   1
#define EXIT_SUCCESS   0
#define RAND_MAX   0x7fffffff

Typedef Documentation

typedef unsigned int size_t
typedef signed int ssize_t

Function Documentation

void abort ( void  )
int abs ( int  x)
int atoi ( const char *  s)
long atol ( const char *  s)
void call_atexit_callbacks ( void  )
void* calloc ( size_t  number,
size_t  size 
)
void exit ( int  status)
void free ( void *  buf)
char* itoa ( int  value,
char *  str,
int  base 
)
char* lltoa ( long long  value,
char *  str,
int  base 
)
char* ltoa ( long  value,
char *  str,
int  base 
)
void* malloc ( size_t  size)
void qsort ( void *  base,
size_t  nmemb,
size_t  size,
int(*)(const void *, const void *)  compar 
)
int rand ( void  )
void* realloc ( void *  buf,
size_t  n 
)
void srand ( unsigned int  seed)
double strtod ( const char *  nptr,
char **  endptr 
)
float strtof ( const char *  nptr,
char **  endptr 
)
long strtol ( const char *  nptr,
char **  endptr,
int  base 
)
long double strtold ( const char *  nptr,
char **  endptr 
)
long long strtoll ( const char *  nptr,
char **  endptr,
int  base 
)
char* ulltoa ( unsigned long long  value,
char *  str,
int  base 
)
char* ultoa ( unsigned long  value,
char *  str,
int  base 
)
char* utoa ( unsigned int  value,
char *  str,
int  base 
)