mirror of
https://github.com/encounter/bfbb.git
synced 2026-03-30 10:58:00 -07:00
97fd26f7eb
* add cache to optimize pragma processing * bbowlwindup * bbowlcheck * bbowltossendcb * recoverwalkcheck * BbowlRecoverRunCheck * anotha few * finish duplicates * refactor * start goocheck * almost do goocheck * almost goodeathcb * Hit01Check * hit01cb * hit checks * remove decomp'ed functions * oopsie * let's be politically correct * politically correct header file * matched 2 close functions after figuring out gotcha * xIni * string * float * fixes Co-authored-by: seilweiss <32021834+seilweiss@users.noreply.github.com>
16 lines
192 B
C
16 lines
192 B
C
#ifndef _MSL_STDLIB
|
|
#define _MSL_STDLIB
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
int rand(void);
|
|
int atoi(const char* nptr);
|
|
double atof(const char* nptr);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif |