supercasiobros/include/base.h

16 lines
279 B
C

#ifndef BASE_FUNCTIONS_H
#define BASE_FUNCTIONS_H
// 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);
void* malloc_prof(int size);
void free_prof(void * p);
#endif