json_byte_workspace_reset (parser);
if (leading_colon)
json_byte_workspace_put (parser, ':');
- ptrdiff_t chars_delta = 0; /* nchars - nbytes */
+ ptrdiff_t chars_delta = 0; /* nbytes - nchars */
for (;;)
{
/* This if is only here for a possible speedup. If there are 4
if (c & 0x80)
{
/* Parse UTF-8, strictly. This is the correct thing to do
- whether or not the input is a unibyte or multibyte string. */
+ whether the input is a unibyte or multibyte string. */
json_byte_workspace_put (parser, c);
unsigned char c1 = json_input_get (parser);
if ((c1 & 0xc0) != 0x80)