17 lines
279 B
C
17 lines
279 B
C
//
|
|
// Created by Giorgio on 28/05/2026.
|
|
//
|
|
|
|
#ifndef BELUGA_UTILS_H
|
|
#define BELUGA_UTILS_H
|
|
#include <sys/_types/_size_t.h>
|
|
|
|
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
|