summaryrefslogtreecommitdiffstats
path: root/fmt.h
diff options
context:
space:
mode:
authormanuel <manuel@mausz.at>2013-02-04 00:08:53 +0100
committermanuel <manuel@mausz.at>2013-02-04 00:08:53 +0100
commit69aec538b456402170dc723af417ba5c05389c32 (patch)
treee6f34c543f17c6392447ea337b2e2868212424d1 /fmt.h
downloadqmail-69aec538b456402170dc723af417ba5c05389c32.tar.gz
qmail-69aec538b456402170dc723af417ba5c05389c32.tar.bz2
qmail-69aec538b456402170dc723af417ba5c05389c32.zip
qmail 1.03 import
Diffstat (limited to 'fmt.h')
-rw-r--r--fmt.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/fmt.h b/fmt.h
new file mode 100644
index 0000000..ba2fe16
--- /dev/null
+++ b/fmt.h
@@ -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
7extern unsigned int fmt_uint();
8extern unsigned int fmt_uint0();
9extern unsigned int fmt_xint();
10extern unsigned int fmt_nbbint();
11extern unsigned int fmt_ushort();
12extern unsigned int fmt_xshort();
13extern unsigned int fmt_nbbshort();
14extern unsigned int fmt_ulong();
15extern unsigned int fmt_xlong();
16extern unsigned int fmt_nbblong();
17
18extern unsigned int fmt_plusminus();
19extern unsigned int fmt_minus();
20extern unsigned int fmt_0x();
21
22extern unsigned int fmt_str();
23extern unsigned int fmt_strn();
24
25#endif