sfeed_gopher: mark function as static - sfeed - RSS and Atom parser | |
git clone git://git.codemadness.org/sfeed | |
Log | |
Files | |
Refs | |
README | |
LICENSE | |
--- | |
commit a2af022b42beea7b8c29ca475f38efd10caf35e8 | |
parent c43e677d80f5eae1e05bcb71d88008fb8ded8cab | |
Author: NRK <[email protected]> | |
Date: Thu, 21 Sep 2023 03:13:52 +0600 | |
sfeed_gopher: mark function as static | |
Diffstat: | |
M sfeed_gopher.c | 2 +- | |
1 file changed, 1 insertion(+), 1 deletion(-) | |
--- | |
diff --git a/sfeed_gopher.c b/sfeed_gopher.c | |
@@ -11,7 +11,7 @@ static size_t linesize; | |
static time_t comparetime; | |
/* Escape characters in gopher, CR and LF are ignored */ | |
-void | |
+static void | |
gophertext(FILE *fp, const char *s) | |
{ | |
for (; *s; s++) { |