fmt.h
author tomas@localhost
Thu, 01 Nov 2007 14:46:11 +0100
changeset 0 c045670f36e9
permissions -rw-r--r--
Imported queue-fix-1.4
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
0
c045670f36e9 Imported queue-fix-1.4
tomas@localhost
parents:
diff changeset
     1
#ifndef FMT_H
c045670f36e9 Imported queue-fix-1.4
tomas@localhost
parents:
diff changeset
     2
#define FMT_H
c045670f36e9 Imported queue-fix-1.4
tomas@localhost
parents:
diff changeset
     3
c045670f36e9 Imported queue-fix-1.4
tomas@localhost
parents:
diff changeset
     4
#define FMT_ULONG 40 /* enough space to hold 2^128 - 1 in decimal, plus \0 */
c045670f36e9 Imported queue-fix-1.4
tomas@localhost
parents:
diff changeset
     5
#define FMT_LEN ((char *) 0) /* convenient abbreviation */
c045670f36e9 Imported queue-fix-1.4
tomas@localhost
parents:
diff changeset
     6
c045670f36e9 Imported queue-fix-1.4
tomas@localhost
parents:
diff changeset
     7
extern unsigned int fmt_uint();
c045670f36e9 Imported queue-fix-1.4
tomas@localhost
parents:
diff changeset
     8
extern unsigned int fmt_uint0();
c045670f36e9 Imported queue-fix-1.4
tomas@localhost
parents:
diff changeset
     9
extern unsigned int fmt_xint();
c045670f36e9 Imported queue-fix-1.4
tomas@localhost
parents:
diff changeset
    10
extern unsigned int fmt_nbbint();
c045670f36e9 Imported queue-fix-1.4
tomas@localhost
parents:
diff changeset
    11
extern unsigned int fmt_ushort();
c045670f36e9 Imported queue-fix-1.4
tomas@localhost
parents:
diff changeset
    12
extern unsigned int fmt_xshort();
c045670f36e9 Imported queue-fix-1.4
tomas@localhost
parents:
diff changeset
    13
extern unsigned int fmt_nbbshort();
c045670f36e9 Imported queue-fix-1.4
tomas@localhost
parents:
diff changeset
    14
extern unsigned int fmt_ulong();
c045670f36e9 Imported queue-fix-1.4
tomas@localhost
parents:
diff changeset
    15
extern unsigned int fmt_xlong();
c045670f36e9 Imported queue-fix-1.4
tomas@localhost
parents:
diff changeset
    16
extern unsigned int fmt_nbblong();
c045670f36e9 Imported queue-fix-1.4
tomas@localhost
parents:
diff changeset
    17
c045670f36e9 Imported queue-fix-1.4
tomas@localhost
parents:
diff changeset
    18
extern unsigned int fmt_plusminus();
c045670f36e9 Imported queue-fix-1.4
tomas@localhost
parents:
diff changeset
    19
extern unsigned int fmt_minus();
c045670f36e9 Imported queue-fix-1.4
tomas@localhost
parents:
diff changeset
    20
extern unsigned int fmt_0x();
c045670f36e9 Imported queue-fix-1.4
tomas@localhost
parents:
diff changeset
    21
c045670f36e9 Imported queue-fix-1.4
tomas@localhost
parents:
diff changeset
    22
extern unsigned int fmt_str();
c045670f36e9 Imported queue-fix-1.4
tomas@localhost
parents:
diff changeset
    23
extern unsigned int fmt_strn();
c045670f36e9 Imported queue-fix-1.4
tomas@localhost
parents:
diff changeset
    24
c045670f36e9 Imported queue-fix-1.4
tomas@localhost
parents:
diff changeset
    25
#endif