From 00c9cb1b22cc17c4db573e0e613a5f116ff0092e Mon Sep 17 00:00:00 2001 From: Laurent Bercot Date: Wed, 25 Jan 2017 15:52:18 +0000 Subject: 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. --- src/headers/uint64-footer | 39 --------------------------------------- 1 file changed, 39 deletions(-) delete mode 100644 src/headers/uint64-footer (limited to 'src/headers/uint64-footer') diff --git a/src/headers/uint64-footer b/src/headers/uint64-footer deleted file mode 100644 index df620a5..0000000 --- a/src/headers/uint64-footer +++ /dev/null @@ -1,39 +0,0 @@ -extern void uint64_pack (char *, uint64) ; -extern void uint64_pack_big (char *, uint64) ; -extern void uint64_unpack (char const *, uint64 *) ; -extern void uint64_unpack_big (char const *, uint64 *) ; -extern void uint64_reverse (char *, unsigned int) ; - -#define UINT64_FMT 21 -#define UINT64_OFMT 25 -#define UINT64_XFMT 17 -#define UINT64_BFMT 65 - -extern unsigned int uint64_fmt_base (char *, uint64, unsigned char) ; -extern unsigned int uint640_fmt_base (char *, uint64, unsigned int, unsigned char) ; - -#define uint64_fmt(s, u) uint64_fmt_base(s, (u), 10) -#define uint640_fmt(s, u, n) uint640_fmt_base(s, u, (n), 10) -#define uint64_ofmt(s, u) uint64_fmt_base(s, (u), 8) -#define uint640_ofmt(s, u, n) uint640_fmt_base(s, u, (n), 8) -#define uint64_xfmt(s, u) uint64_fmt_base(s, (u), 16) -#define uint640_xfmt(s, u, n) uint640_fmt_base(s, u, (n), 16) -#define uint64_bfmt(s, u) uint64_fmt_base(s, (u), 2) -#define uint640_bfmt(s, u, n) uint640_fmt_base(s, u, (n), 2) - -extern unsigned int uint64_fmtlist (char *, uint64 const *, unsigned int) ; - -extern unsigned int uint64_scan_base (char const *, uint64 *, unsigned char) ; -extern unsigned int uint640_scan_base (char const *, uint64 *, unsigned char) ; -#define uint64_scan(s, u) uint64_scan_base(s, (u), 10) -#define uint640_scan(s, u) uint640_scan_base(s, (u), 10) -#define uint64_oscan(s, u) uint64_scan_base(s, (u), 8) -#define uint640_oscan(s, u) uint640_scan_base(s, (u), 8) -#define uint64_xscan(s, u) uint64_scan_base(s, (u), 16) -#define uint640_xscan(s, u) uint640_scan_base(s, (u), 16) -#define uint64_bscan(s, u) uint64_scan_base(s, (u), 2) -#define uint640_bscan(s, u) uint640_scan_base(s, (u), 2) - -extern unsigned int uint64_scanlist (uint64 *, unsigned int, char const *, unsigned int *) ; - -#endif -- cgit v1.2.3