diff options
Diffstat (limited to 'include/fmt.h')
-rw-r--r-- | include/fmt.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/include/fmt.h b/include/fmt.h index 6e68d60..62eeefb 100644 --- a/include/fmt.h +++ b/include/fmt.h @@ -2,17 +2,17 @@ #define FMT_H /** - @file fmt.h - @author djb, kp, feh - @source qmail - @brief conversion function declarations - */ + * @file fmt.h + * @authors djb, kp, feh + * @ref qmail + * @brief conversion function declarations + */ #define FMT_ULONG 40 /* enough space to hold 2^128 - 1 in decimal, plus \0 */ #define FMT_LEN ((char *) 0) /* convenient abbreviation */ -extern unsigned int fmt_str(char *,char *); -extern unsigned int fmt_strn(char *,char *,unsigned int); +extern unsigned int fmt_str(char *,const char *); +extern unsigned int fmt_strn(char *,const char *,unsigned int); extern unsigned int fmt_uint(char *,unsigned int); extern unsigned int fmt_uint0(char *,unsigned int,unsigned int); extern unsigned int fmt_ulong(char *,unsigned long); |