diff options
| author | June McEnroe <june@causal.agency> | 2020-04-14 11:07:33 -0400 |
|---|---|---|
| committer | June McEnroe <june@causal.agency> | 2020-04-14 11:07:33 -0400 |
| commit | 8f6d0a2c1c54542ec32a627054bfe1d015480c87 (patch) | |
| tree | 7410ba416a2e7b4641320c34c9beccb146673932 /template.c | |
| parent | Use mid: URLs for Atom IDs (diff) | |
| download | bubger-8f6d0a2c1c54542ec32a627054bfe1d015480c87.tar.gz bubger-8f6d0a2c1c54542ec32a627054bfe1d015480c87.zip | |
Add decoding stubs
Diffstat (limited to 'template.c')
| -rw-r--r-- | template.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/template.c b/template.c index 8653769..e88b50f 100644 --- a/template.c +++ b/template.c @@ -24,7 +24,7 @@ #include "archive.h" -static int escapeNull(FILE *file, const char *str) { +int escapeNull(FILE *file, const char *str) { size_t n = fwrite(str, strlen(str), 1, file); return (n ? 0 : -1); } |