diff options
author | Jannis Hoffmann <jannis@fehcom.de> | 2024-07-09 14:41:53 +0200 |
---|---|---|
committer | Jannis Hoffmann <jannis@fehcom.de> | 2024-07-09 14:41:53 +0200 |
commit | 5fadc0cbb8577c61d66bd6f19ceaf0507c11e23b (patch) | |
tree | 684758441f5b431d0008253243034b6a4a29417c /include/fmt.h | |
parent | 249866e3d1e11dc72eaa1305f4bb479ded92ef38 (diff) |
initial clang-format
Diffstat (limited to 'include/fmt.h')
-rw-r--r-- | include/fmt.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/include/fmt.h b/include/fmt.h index 6e68d60..e6de428 100644 --- a/include/fmt.h +++ b/include/fmt.h @@ -8,15 +8,15 @@ @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 */ +#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_uint(char *,unsigned int); -extern unsigned int fmt_uint0(char *,unsigned int,unsigned int); -extern unsigned int fmt_ulong(char *,unsigned long); -extern unsigned int fmt_xlong(char *,unsigned long); +extern unsigned int fmt_str(char *, char *); +extern unsigned int fmt_strn(char *, 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); +extern unsigned int fmt_xlong(char *, unsigned long); extern int fromhex(unsigned char); extern char tohex(char); |