File: fmt.h

package info (click to toggle)
fastforward 1%3A0.51-3.1~deb9u1
  • links: PTS
  • area: main
  • in suites: stretch
  • size: 688 kB
  • sloc: ansic: 4,393; makefile: 527; sh: 138
file content (25 lines) | stat: -rw-r--r-- 676 bytes parent folder | download | duplicates (38)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#ifndef FMT_H
#define FMT_H

#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_uint();
extern unsigned int fmt_uint0();
extern unsigned int fmt_xint();
extern unsigned int fmt_nbbint();
extern unsigned int fmt_ushort();
extern unsigned int fmt_xshort();
extern unsigned int fmt_nbbshort();
extern unsigned int fmt_ulong();
extern unsigned int fmt_xlong();
extern unsigned int fmt_nbblong();

extern unsigned int fmt_plusminus();
extern unsigned int fmt_minus();
extern unsigned int fmt_0x();

extern unsigned int fmt_str();
extern unsigned int fmt_strn();

#endif