Releases: rgoulter/c-worksheet-instrumentor
Releases · rgoulter/c-worksheet-instrumentor
v0.2.6
Quick project brush up:
- Migrated the
build.gradle
to work with Gradle 8.7. (judging by the build.gradle history, from Gradle 2). - CI: Removed Travis-CI, since this stopped running builds of public repos. Added GitHub Actions for Linux, and macOS (x86_64, aarch64).
- Added Nix support code.
Full Changelog: v0.2.5...v0.2.6
v0.2.5
v0.2.4
Fix a couple of corner cases:
"abc";
now visualised as> abc
(rather than> 0xabc124 = a
). If you'd
still like to see pointer addresses of string literals, you can make use of
statements like:char *p = "lit"; p;
instead.char ca[] = "Hello"; ca;
now visualised as> Hello
. (Previously, would
try to output char by char, includingNUL
, so resulted in> [H, e, l, l, o,
).- Array Subscripting now works for pointers, and for when subscriping an array
onto an integer. e.g.5[arr];
.
v0.2.3
v0.2.3-SNAPSHOT
v0.2.3-SNAPSHOT