12 lines
261 B
C
12 lines
261 B
C
#ifndef __QUEUE_MEM_H
|
|
#define __QUEUE_MEM_H
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <stdbool.h>
|
|
#include <string.h>
|
|
void node_set_static_buf(void* buf, unsigned int size);
|
|
void* node_malloc(unsigned int size);
|
|
void* node_mem(unsigned int size);
|
|
|
|
#endif
|