Commits
Commit:
f3f98c7007ed5089ebedcd43402a071da839ee89
Date:
Tue Feb 8 22:43:32 2022
UTC
prettify pagebundler output
Commit:
34b4388f7fddbfe1af5164983ff624e075537a31
Date:
Tue Feb 8 22:27:10 2022
UTC
simplify pagebundler usage: deduce the variable name from the file
Commit:
afda2dda15548492a0e1f66f7b9917f963623ce3
Date:
Tue Feb 8 22:12:37 2022
UTC
crank up pagebundler buffer
Commit:
14967cafc0112b8f051b0eeab28b8b5871340368
Date:
Tue Feb 8 22:11:21 2022
UTC
fmt
Commit:
95a8c791ec85e7b79a1975e82a22f7c07dbb9107
Date:
Thu Aug 26 10:40:55 2021
UTC
fmt (some missing space -> tab conversion)
Commit:
2aeddf9c1b0f33b94a01a0c307e3408b89e746c5
Date:
Sun Jul 18 17:34:15 2021
UTC
emit a dummy NUL byte on empty files
an empty initializer, such as
uint8_t foo[] = { };
raises a warning: "use of GNU empty initializer extension" using
-pedantic. This adds a dummy NUL byte that's not accounted in the len
counter. So, now it produces:
uint8_t foo[] = { 0x0 };
size_t foo_len = 0;
Commit:
ed84beb94ed56dbc810ebc7323e2458c26287c09
Date:
Sun Jul 18 15:53:25 2021
UTC
don't add trailing NUL byte
plus some doc improvements and a missing return
Commit:
de6548b97dff8ce3a011f93e007254cd9f01b8ec
Date:
Sun Jul 18 15:05:36 2021
UTC
added missing include
thanks Ben for noticing it!
Commit:
a2728733634103e8460cf0d47c151e2642e7cbc4
Date:
Sun Jul 18 09:32:39 2021
UTC
move built-in pages to pages/*.gmi
Omar Polo