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:
2024-04-25 10:48:51 +05:30
parent 159501168c
commit 1dfdbb3cd0
10 changed files with 39 additions and 38 deletions

View File

@@ -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 *);