diff options
author | Laurent Bercot <ska-skaware@skarnet.org> | 2017-01-21 14:51:28 +0000 |
---|---|---|
committer | Laurent Bercot <ska-skaware@skarnet.org> | 2017-01-21 14:51:28 +0000 |
commit | 05db4ba46ae1ca6143bb9b432d1e05e69eddd263 (patch) | |
tree | c08156b5d1750c1b56331a2ef1ba537038d771b8 /src/libbiguint/bu_fmt.c | |
parent | 9eb3a42e1a2f14b49ece03b661280db53f15a546 (diff) | |
download | skalibs-05db4ba46ae1ca6143bb9b432d1e05e69eddd263.tar.xz |
Types fix, start: preparation and libbiguint
Diffstat (limited to 'src/libbiguint/bu_fmt.c')
-rw-r--r-- | src/libbiguint/bu_fmt.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/libbiguint/bu_fmt.c b/src/libbiguint/bu_fmt.c index 31fa706..8e5dda1 100644 --- a/src/libbiguint/bu_fmt.c +++ b/src/libbiguint/bu_fmt.c @@ -1,16 +1,18 @@ /* ISC license. */ +#include <sys/types.h> +#include <stdint.h> #include <skalibs/uint32.h> #include <skalibs/bytestr.h> #include <skalibs/biguint.h> -unsigned int bu_fmt (char *s, uint32 const *x, unsigned int n) +size_t bu_fmt (char *s, uint32_t const *x, unsigned int n) { - unsigned int len = 0 ; + size_t len = 0 ; while (n--) { char fmt[8] ; - unsigned int i = uint32_xfmt(fmt, x[n]) ; + size_t i = uint32_xfmt(fmt, x[n]) ; byte_copy(s+len, 8-i, "00000000") ; byte_copy(s+len+8-i, i, fmt) ; len += 8 ; |