Refactor type byte -> byte_t
Simpler to read as a type. This style will allow me to define signed versions of the base types as simpler names than what they are currently.
This commit is contained in:
@@ -22,7 +22,7 @@ typedef struct Page
|
||||
{
|
||||
struct Page *next;
|
||||
size_t available;
|
||||
byte data[];
|
||||
byte_t data[];
|
||||
} page_t;
|
||||
|
||||
page_t *page_create(size_t, page_t *);
|
||||
|
||||
Reference in New Issue
Block a user