s/qmail  3.3.23
Next generation secure email transport
fmt.h
Go to the documentation of this file.
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 unsigned int fmt_uint(char *,unsigned int);
8 unsigned int fmt_uint0(char *,unsigned int, unsigned int);
9 unsigned int fmt_xint();
10 unsigned int fmt_nbbint();
11 unsigned int fmt_ushort();
12 unsigned int fmt_xshort();
13 unsigned int fmt_nbbshort();
14 unsigned int fmt_ulong(char *,unsigned long);
15 unsigned int fmt_xlong(char *,unsigned long);
16 unsigned int fmt_nbblong();
17 
18 unsigned int fmt_plusminus();
19 unsigned int fmt_minus();
20 unsigned int fmt_0x();
21 
22 unsigned int fmt_str(char *,char *);
23 unsigned int fmt_strn(char *,char *,unsigned int);
24 
25 #endif
unsigned int fmt_ulong(char *, unsigned long)
unsigned int fmt_xshort()
unsigned int fmt_nbbshort()
unsigned int fmt_minus()
unsigned int fmt_plusminus()
unsigned int fmt_0x()
unsigned int fmt_nbbint()
unsigned int fmt_str(char *, char *)
unsigned int fmt_ushort()
unsigned int fmt_uint(char *, unsigned int)
unsigned int fmt_xlong(char *, unsigned long)
unsigned int fmt_uint0(char *, unsigned int, unsigned int)
Definition: fmt_uint0.c:3
unsigned int fmt_nbblong()
unsigned int fmt_strn(char *, char *, unsigned int)
unsigned int fmt_xint()