From fdffefb8032922ce7ffe4c00816072a8ff2148fc Mon Sep 17 00:00:00 2001 From: Laurent Bercot Date: Fri, 17 Feb 2017 22:30:53 +0000 Subject: More types changes New disize Add size_t to the autotypes list Delete redundant and replace-libc files dev_t/ino_t pass Big size_t pass More things missing, still not operational yet --- src/libstddjb/string_format.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'src/libstddjb/string_format.c') diff --git a/src/libstddjb/string_format.c b/src/libstddjb/string_format.c index f81b03d..73c2572 100644 --- a/src/libstddjb/string_format.c +++ b/src/libstddjb/string_format.c @@ -1,5 +1,7 @@ /* ISC license. */ +#include +#include #include #include #include @@ -8,10 +10,10 @@ int string_format (stralloc *sa, char const *vars, char const *format, char cons { static unsigned char const tab[2][4] = { "1442", "4833" } ; char class[256] = "3222222222222222222222222222222222222022222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222" ; - unsigned int varlen = str_len(vars) ; - unsigned int base = sa->len ; + size_t varlen = strlen(vars) ; + size_t base = sa->len ; + size_t state = 0 ; int wasnull = !sa->s ; - unsigned int state = 0 ; for (; state < varlen ; state++) if (class[(unsigned char)vars[state]] == '2') -- cgit v1.3.1