summaryrefslogtreecommitdiff
path: root/src/headers/unsigned-template
blob: 8ef6db4e88f9259a47dad3f9d2d7e02674d2eebe (plain)
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#define @TYPE@_PACK @BYTES@
#define @type@_pack uint@BITS@_pack
#define @type@_pack_big uint@BITS@_pack_big
#define @type@_unpack uint@BITS@_unpack
#define @type@_unpack_big uint@BITS@_unpack_big

#define @type@_reverse uint@BITS@_reverse
#define @type@_big_endian uint@BITS@_big_endian
#define @type@_little_endian uint@BITS@_little_endian

#define @TYPE@_FMT UINT@BITS@_FMT
#define @TYPE@_OFMT UINT@BITS@_OFMT
#define @TYPE@_XFMT UINT@BITS@_XFMT
#define @TYPE@_BFMT UINT@BITS@_BFMT

#define @type@_fmt_base uint@BITS@_fmt_base
#define @type@0_fmt_base uint@BITS@0_fmt_base
#define @type@_fmt uint@BITS@_fmt
#define @type@0_fmt uint@BITS@0_fmt
#define @type@_ofmt uint@BITS@_ofmt
#define @type@0_ofmt uint@BITS@0_ofmt
#define @type@_xfmt uint@BITS@_xfmt
#define @type@0_xfmt uint@BITS@0_xfmt
#define @type@_bfmt uint@BITS@_bfmt
#define @type@0_bfmt uint@BITS@0_bfmt

#define @type@_fmtlist uint@BITS@_fmtlist

#define @type@_scan_base uint@BITS@_scan_base
#define @type@0_scan_base uint@BITS@0_scan_base
#define @type@_scanlist uint@BITS@_scanlist

#define @type@_scan(s, u) @type@_scan_base(s, (u), 10)
#define @type@0_scan(s, u) @type@0_scan_base(s, (u), 10)
#define @type@_oscan(s, u) @type@_scan_base(s, (u), 8)
#define @type@0_oscan(s, u) @type@0_scan_base(s, (u), 8)
#define @type@_xscan(s, u) @type@_scan_base(s, (u), 16)
#define @type@0_xscan(s, u) @type@0_scan_base(s, (u), 16)
#define @type@_bscan(s, u) @type@_scan_base(s, (u), 2)
#define @type@0_bscan(s, u) @type@0_scan_base(s, (u), 2)