supercasiobros/include/base.h

19 lines
300 B
C
Raw Normal View History

2020-01-29 14:34:57 +01:00
#ifndef BASE_FUNCTIONS_H
#define BASE_FUNCTIONS_H
2020-01-29 14:34:57 +01:00
// On va essayer de grapiller quelques octets d'executable avec ça
int max(const int x, const int y);
int min(const int x, const int y);
int sgn(const int x);
int abs(const int x);
void* mallocProf(int size);
2020-02-03 11:12:54 +01:00
void freeProf(void * p);
2020-02-03 11:12:54 +01:00
#endif