david/ipxe
david
/
ipxe
Archived
1
0
Fork 0
This repository has been archived on 2020-12-06. You can view files and clone it, but cannot push or open issues or pull requests.
ipxe/src/include/buffer.h

17 lines
252 B
C
Raw Normal View History

#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 */