iMark prototypes as extern in common.h - sacc - sacc(omys), simple console gopher client Err bitreich.org 70 hgit clone git://bitreich.org/sacc/ git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfrinws65d7roiv6bfj7d652fid.onion/sacc/ URL:git://bitreich.org/sacc/ git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfrinws65d7roiv6bfj7d652fid.onion/sacc/ bitreich.org 70 1Log /scm/sacc/log.gph bitreich.org 70 1Files /scm/sacc/files.gph bitreich.org 70 1Refs /scm/sacc/refs.gph bitreich.org 70 1Tags /scm/sacc/tag bitreich.org 70 1LICENSE /scm/sacc/file/LICENSE.gph bitreich.org 70 i--- Err bitreich.org 70 1commit 6b520eb8b70b98a311a13a62606567095af28290 /scm/sacc/commit/6b520eb8b70b98a311a13a62606567095af28290.gph bitreich.org 70 1parent 575c12bd0606717a2e7312669decc9a8197e41bd /scm/sacc/commit/575c12bd0606717a2e7312669decc9a8197e41bd.gph bitreich.org 70 hAuthor: Quentin Rameau URL:mailto:quinq@fifth.space bitreich.org 70 iDate: Tue, 9 Nov 2021 00:13:45 +0100 Err bitreich.org 70 i Err bitreich.org 70 iMark prototypes as extern in common.h Err bitreich.org 70 i Err bitreich.org 70 iDiffstat: Err bitreich.org 70 i M common.h | 26 +++++++++++++------------- Err bitreich.org 70 i Err bitreich.org 70 i1 file changed, 13 insertions(+), 13 deletions(-) Err bitreich.org 70 i--- Err bitreich.org 70 1diff --git a/common.h b/common.h /scm/sacc/file/common.h.gph bitreich.org 70 i@@ -44,19 +44,19 @@ struct dir { Err bitreich.org 70 i size_t curline; Err bitreich.org 70 i }; Err bitreich.org 70 i Err bitreich.org 70 i-extern void (*diag)(char *fmt, ...); Err bitreich.org 70 i+extern void (*diag)(char *, ...); Err bitreich.org 70 i Err bitreich.org 70 i-void die(const char *fmt, ...); Err bitreich.org 70 i-size_t mbsprint(const char *s, size_t len); Err bitreich.org 70 i+extern void die(const char *, ...); Err bitreich.org 70 i+extern size_t mbsprint(const char *, size_t); Err bitreich.org 70 i #ifdef NEED_STRCASESTR Err bitreich.org 70 i-char *strcasestr(const char *h, const char *n); Err bitreich.org 70 i+extern char *strcasestr(const char *, const char *); Err bitreich.org 70 i #endif /* NEED_STRCASESTR */ Err bitreich.org 70 i-const char *typedisplay(char t); Err bitreich.org 70 i-int itemuri(Item *, char *, size_t); Err bitreich.org 70 i-void uicleanup(void); Err bitreich.org 70 i-void uidisplay(Item *entry); Err bitreich.org 70 i-char *uiprompt(char *fmt, ...); Err bitreich.org 70 i-Item *uiselectitem(Item *entry); Err bitreich.org 70 i-void uisetup(void); Err bitreich.org 70 i-void uisigwinch(int signal); Err bitreich.org 70 i-void uistatus(char *fmt, ...); Err bitreich.org 70 i+extern const char *typedisplay(char); Err bitreich.org 70 i+extern int itemuri(Item *, char *, size_t); Err bitreich.org 70 i+extern void uicleanup(void); Err bitreich.org 70 i+extern void uidisplay(Item *); Err bitreich.org 70 i+extern char *uiprompt(char *, ...); Err bitreich.org 70 i+extern Item *uiselectitem(Item *); Err bitreich.org 70 i+extern void uisetup(void); Err bitreich.org 70 i+extern void uisigwinch(int); Err bitreich.org 70 i+extern void uistatus(char *, ...); Err bitreich.org 70 .