Files

13 lines
218 B
C
Raw Permalink Normal View History

2021-07-20 20:33:52 -05:00
#ifndef _STDLIB_H_
#define _STDLIB_H_
2021-07-31 22:27:47 -05:00
#include <stddef.h>
2022-06-06 23:44:06 -05:00
#include <wchar.h>
2021-07-31 22:27:47 -05:00
2021-07-20 20:33:52 -05:00
void srand(unsigned int seed);
2021-08-09 21:38:25 -05:00
int rand(void);
2021-07-31 22:27:47 -05:00
void exit(int status);
2022-06-06 23:44:06 -05:00
size_t wcstombs(char *dest, const wchar_t *src, size_t max);
2021-07-20 20:33:52 -05:00
#endif