mirror of
https://github.com/pret/pokerevo.git
synced 2026-08-26 02:34:13 -05:00
16 lines
266 B
C
16 lines
266 B
C
#ifndef POKEREVO_STDLIB_H
|
|
#define POKEREVO_STDLIB_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void qsort(void *base, u32 nmemb, u32 size,
|
|
s32 (*compar)(const void *, const void *));
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif //POKEREVO_STDLIB_H
|