Go to the source code of this file.
Functions | |
int | abs (int) |
int | atoi (char *) |
long | atol (char *) |
void | bzero (void *, int) |
void | qsort (char *, unsigned, int, int(*)(void)) |
ulong | rand (void) |
void | srand (unsigned long) |
Definition in file stdlib.h.
int abs | ( | int | arg | ) |
int atoi | ( | char * | p | ) |
long atol | ( | char * | p | ) |
Converts an ascii value to a long.
*p | pointer to ascii string |
Definition at line 14 of file atol.c.
Referenced by xsh_kill(), xsh_sleep(), xsh_testsuite(), and xsh_uartstat().
void bzero | ( | void * | p, | |
int | len | |||
) |
Clears a block of characters to 0s
*p | pointer to start of block | |
len | length of the block |
Definition at line 14 of file bzero.c.
Referenced by ttyClose(), ttyInit(), and uartInit().
void qsort | ( | char * | , | |
unsigned | , | |||
int | , | |||
int(*)(void) | ||||
) |
ulong rand | ( | void | ) |
void srand | ( | unsigned long | x | ) |