mirror of
https://github.com/xcat2/xNBA.git
synced 2024-12-15 07:41:45 +00:00
17 lines
252 B
C
17 lines
252 B
C
|
#ifndef BUFFER_H
|
||
|
#define BUFFER_H
|
||
|
|
||
|
struct buffer_free_block {
|
||
|
struct buffer_free_block *next;
|
||
|
struct buffer_free_block *prev;
|
||
|
void *end;
|
||
|
};
|
||
|
|
||
|
struct buffer {
|
||
|
struct buffer_free_block free_blocks;
|
||
|
void *start;
|
||
|
void *end;
|
||
|
};
|
||
|
|
||
|
#endif /* BUFFER_H */
|