diff options
Diffstat (limited to 'lib/lib.c')
-rw-r--r-- | lib/lib.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -370,7 +370,7 @@ int wctoutf8(char *s, unsigned wc) // Convert utf8 sequence to a unicode wide character // returns bytes consumed, or -1 if err, or -2 if need more data. -int utf8towc(wchar_t *wc, char *str, unsigned len) +int utf8towc(unsigned *wc, char *str, unsigned len) { unsigned result, mask, first; char *s, c; @@ -403,7 +403,7 @@ char *strlower(char *s) { char *try, *new; int len, mlen = (strlen(s)|7)+9; - wchar_t c; + unsigned c; try = new = xmalloc(mlen); @@ -739,7 +739,7 @@ void loopfiles(char **argv, void (*function)(int fd, char *name)) loopfiles_rw(argv, O_RDONLY|O_CLOEXEC|WARN_ONLY, 0, function); } -// glue to call dl_lines() from loopfiles +// glue to call do_lines() from loopfiles static void (*do_lines_bridge)(char **pline, long len); static void loopfile_lines_bridge(int fd, char *name) { |