diff options
| author | manuel <manuel@mausz.at> | 2013-02-04 00:08:53 +0100 |
|---|---|---|
| committer | manuel <manuel@mausz.at> | 2013-02-04 00:08:53 +0100 |
| commit | 69aec538b456402170dc723af417ba5c05389c32 (patch) | |
| tree | e6f34c543f17c6392447ea337b2e2868212424d1 /fmt.h | |
| download | qmail-69aec538b456402170dc723af417ba5c05389c32.tar.gz qmail-69aec538b456402170dc723af417ba5c05389c32.tar.bz2 qmail-69aec538b456402170dc723af417ba5c05389c32.zip | |
qmail 1.03 import
Diffstat (limited to 'fmt.h')
| -rw-r--r-- | fmt.h | 25 |
1 files changed, 25 insertions, 0 deletions
| @@ -0,0 +1,25 @@ | |||
| 1 | #ifndef FMT_H | ||
| 2 | #define FMT_H | ||
| 3 | |||
| 4 | #define FMT_ULONG 40 /* enough space to hold 2^128 - 1 in decimal, plus \0 */ | ||
| 5 | #define FMT_LEN ((char *) 0) /* convenient abbreviation */ | ||
| 6 | |||
| 7 | extern unsigned int fmt_uint(); | ||
| 8 | extern unsigned int fmt_uint0(); | ||
| 9 | extern unsigned int fmt_xint(); | ||
| 10 | extern unsigned int fmt_nbbint(); | ||
| 11 | extern unsigned int fmt_ushort(); | ||
| 12 | extern unsigned int fmt_xshort(); | ||
| 13 | extern unsigned int fmt_nbbshort(); | ||
| 14 | extern unsigned int fmt_ulong(); | ||
| 15 | extern unsigned int fmt_xlong(); | ||
| 16 | extern unsigned int fmt_nbblong(); | ||
| 17 | |||
| 18 | extern unsigned int fmt_plusminus(); | ||
| 19 | extern unsigned int fmt_minus(); | ||
| 20 | extern unsigned int fmt_0x(); | ||
| 21 | |||
| 22 | extern unsigned int fmt_str(); | ||
| 23 | extern unsigned int fmt_strn(); | ||
| 24 | |||
| 25 | #endif | ||
