aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarkus Uhlin <markus@nifty-networks.net>2026-03-08 01:12:48 +0100
committerMarkus Uhlin <markus@nifty-networks.net>2026-03-08 01:12:48 +0100
commit41493fac0acb798bc4061d93ee3d4b857725f422 (patch)
treeba86a9e1df7c2973db21a79811d1ddc7a028a996
parent43ab3781a768f8071c6e061fd451973e623bb326 (diff)
Usage of begin/end decls
-rw-r--r--FICS/maxxes-utils.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/FICS/maxxes-utils.h b/FICS/maxxes-utils.h
index 034c7ee..2e2c723 100644
--- a/FICS/maxxes-utils.h
+++ b/FICS/maxxes-utils.h
@@ -13,6 +13,7 @@
#define mstrlcat(p_dst, p_src, p_dstsize) \
strlcat_trunc_chk((p_dst), (p_src), (p_dstsize), __FILE__, __LINE__)
+__FICS_BEGIN_DECLS
bool is_too_long(const int, const size_t);
void snprintf_trunc_chk(const char *file, const long int line,
@@ -21,5 +22,6 @@ void strlcpy_trunc_chk(char *dst, const char *src, size_t dstsize,
const char *, const long int);
void strlcat_trunc_chk(char *dst, const char *src, size_t dstsize,
const char *, const long int);
+__FICS_END_DECLS
#endif