diff options
author | Markus Uhlin <markus@nifty-networks.net> | 2024-11-20 23:55:07 +0100 |
---|---|---|
committer | Markus Uhlin <markus@nifty-networks.net> | 2024-11-20 23:55:07 +0100 |
commit | 3ba87dc43a63cfb983233857550c1caed32c9079 (patch) | |
tree | 27cb9860745742f7ba48ee70aa5ca6217ca1264e /FICS/utils.h | |
parent | fa0dcf92ef333881e680cbe338aca2d78b848156 (diff) |
Added begin/end decls
Diffstat (limited to 'FICS/utils.h')
-rw-r--r-- | FICS/utils.h | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/FICS/utils.h b/FICS/utils.h index 3bcdd4d..df986eb 100644 --- a/FICS/utils.h +++ b/FICS/utils.h @@ -55,10 +55,7 @@ #define ClearFlag(VAR, FLAG) (VAR &= ~(FLAG)) #define CheckFlag(VAR, FLAG) (VAR & (FLAG)) -#ifdef __cplusplus -extern "C" { -#endif - +__FICS_BEGIN_DECLS extern char *dotQuad(unsigned int); extern char *eattailwhite(char *); extern char *eatwhite(char *); @@ -110,9 +107,6 @@ extern int untenths(unsigned int); extern unsigned int tenth_secs(void); //extern void pprintf_dohightlight(int); //extern void sprintf_dohightlight(int, char *); - -#ifdef __cplusplus -} -#endif +__FICS_END_DECLS #endif /* _UTILS_H */ |