Cleanup and fixes

Author Mitja Felicijan <mitja.felicijan@gmail.com> 2026-01-21 20:00:29 +0100
Committer Mitja Felicijan <mitja.felicijan@gmail.com> 2026-01-21 20:00:29 +0100
Commit ef522ea5cd0c1f25fe8f3c66e23ef7f61a3017fd (patch)
-rw-r--r-- README.md 2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
...
156
  
156
  
157
if (content) {
157
if (content) {
158
    printf("Read %zu bytes:\n%s\n", size, content);
158
    printf("Read %zu bytes:\n%s\n", size, content);
159
    FREE(content); // Standard free (unless using arena)
159
    free(content); // Standard free (unless using arena)
160
}
160
}
161
  
161
  
162
// Or read directly into a string builder
162
// Or read directly into a string builder
...