11 lines
145 B
C
11 lines
145 B
C
//
|
|
// Created by Nils Polek on 23.01.24.
|
|
//
|
|
typedef struct {
|
|
int size;
|
|
int hcurrent;
|
|
}heap;
|
|
|
|
//void* alloc(int size){
|
|
// return {}
|
|
//}
|