Commits
- Commit:
47eaa0e007e02fd3af48c398d5409c303562b15c
- From:
- Omar Polo <op@omarpolo.com>
- Date:
pagebundler: always append a NUL byte, don't emit full length
Even if we have the full length for the about:* pages, we just treat
them as C strings. Except that they don't have a NUL terminator.
Add it so we can continue to prented they're strings.
- Commit:
f2f795dfc521620e435ca094dee03e5c838224cf
- From:
- Omar Polo <op@omarpolo.com>
- Date:
fix copyright dates
- Commit:
f3f98c7007ed5089ebedcd43402a071da839ee89
- From:
- Omar Polo <op@omarpolo.com>
- Date:
prettify pagebundler output
- Commit:
34b4388f7fddbfe1af5164983ff624e075537a31
- From:
- Omar Polo <op@omarpolo.com>
- Date:
simplify pagebundler usage: deduce the variable name from the file
- Commit:
afda2dda15548492a0e1f66f7b9917f963623ce3
- From:
- Omar Polo <op@omarpolo.com>
- Date:
crank up pagebundler buffer
- Commit:
14967cafc0112b8f051b0eeab28b8b5871340368
- From:
- Omar Polo <op@omarpolo.com>
- Date:
fmt
- Commit:
95a8c791ec85e7b79a1975e82a22f7c07dbb9107
- From:
- Omar Polo <op@omarpolo.com>
- Date:
fmt (some missing space -> tab conversion)
- Commit:
2aeddf9c1b0f33b94a01a0c307e3408b89e746c5
- From:
- Omar Polo <op@omarpolo.com>
- Date:
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
- From:
- Omar Polo <op@omarpolo.com>
- Date:
don't add trailing NUL byte
plus some doc improvements and a missing return
- Commit:
de6548b97dff8ce3a011f93e007254cd9f01b8ec
- From:
- Omar Polo <op@omarpolo.com>
- Date:
added missing include
thanks Ben for noticing it!
- Commit:
a2728733634103e8460cf0d47c151e2642e7cbc4
- From:
- Omar Polo <op@omarpolo.com>
- Date:
move built-in pages to pages/*.gmi