- if (!memchr(delim, delimlen, *s)) + if (!memchr(delim, *s, delimlen))
Ouch. I blame djb's byte_chr(), which has arguments 2 and 3 inverted, for that one. :) Applied, thanks! -- Laurent
- if (!memchr(delim, delimlen, *s)) + if (!memchr(delim, *s, delimlen))
Ouch. I blame djb's byte_chr(), which has arguments 2 and 3 inverted, for that one. :) Applied, thanks! -- Laurent