// // Created by Giorgio on 28/05/2026. // #ifndef BELUGA_UTILS_H #define BELUGA_UTILS_H #include extern int beluga_alloc_counter; void * bAlloc(size_t size); void * bRealloc(void * ptr, size_t size); void * bFree(void * ptr); #endif //BELUGA_UTILS_H