about summary refs log tree commit diff
path: root/template.c
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2020-04-14 11:07:33 -0400
committerJune McEnroe <june@causal.agency>2020-04-14 11:07:33 -0400
commit8f6d0a2c1c54542ec32a627054bfe1d015480c87 (patch)
tree7410ba416a2e7b4641320c34c9beccb146673932 /template.c
parentUse mid: URLs for Atom IDs (diff)
downloadbubger-8f6d0a2c1c54542ec32a627054bfe1d015480c87.tar.gz
bubger-8f6d0a2c1c54542ec32a627054bfe1d015480c87.zip
Add decoding stubs
Diffstat (limited to 'template.c')
-rw-r--r--template.c2
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);
 }