diff options
author | Laurent Bercot <ska-skaware@skarnet.org> | 2017-01-25 15:52:18 +0000 |
---|---|---|
committer | Laurent Bercot <ska-skaware@skarnet.org> | 2017-01-25 15:52:18 +0000 |
commit | 00c9cb1b22cc17c4db573e0e613a5f116ff0092e (patch) | |
tree | 53178b2c52c6e97c6193f73378f3c5e5a781a914 /src/headers/uint-32 | |
parent | 2746b131aa482ac17c94bc6b82e58dbcc1b752cf (diff) | |
download | skalibs-00c9cb1b22cc17c4db573e0e613a5f116ff0092e.tar.xz |
More work on the types. This commit builds but has errors.
Rework src/headers entirely: build skalibs/types.h
Convert skalibs/fmtscan.h types.
Propagate changes until it builds.
There are a lot of incompatible pointer issues remaining, those will be fixed with the buffer overhaul.
Diffstat (limited to 'src/headers/uint-32')
-rw-r--r-- | src/headers/uint-32 | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/src/headers/uint-32 b/src/headers/uint-32 deleted file mode 100644 index 32c6600..0000000 --- a/src/headers/uint-32 +++ /dev/null @@ -1,34 +0,0 @@ -#include <skalibs/uint32.h> - -#define UINT_PACK 4 -#define uint_pack uint32_pack -#define uint_pack_big uint32_pack_big -#define uint_unpack(s, u) uint32_unpack(s, (uint32 *)(char *)(u)) -#define uint_unpack_big(s, u) uint32_unpack_big(s, (uint32 *)(char *)(u)) - -#define uint_reverse uint32_reverse -#define uint_big_endian uint32_big_endian -#define uint_little_endian uint32_little_endian - -#define UINT_FMT UINT32_FMT -#define UINT_OFMT UINT32_OFMT -#define UINT_XFMT UINT32_XFMT -#define UINT_BFMT UINT32_BFMT - -#define uint_fmt_base uint32_fmt_base -#define uint0_fmt_base uint320_fmt_base -#define uint_fmt uint32_fmt -#define uint0_fmt uint320_fmt -#define uint_ofmt uint32_ofmt -#define uint0_ofmt uint320_ofmt -#define uint_xfmt uint32_xfmt -#define uint0_xfmt uint320_xfmt -#define uint_bfmt uint32_bfmt -#define uint0_bfmt uint320_bfmt - -#define uint_fmtlist(s, tab, n) uint32_fmtlist(s, tab, n) - -#define uint_scan_base(s, u, b) uint32_scan_base(s, (uint32 *)(char *)(u), b) -#define uint0_scan_base(s, u, b) uint320_scan_base(s, (uint32 *)(char *)(u), b) - -#define uint_scanlist(tab, max, s, num) uint32_scanlist(tab, max, s, num) |