reformatting: cJSONUtils_PointerEncodedstrlen

This commit is contained in:
Max Bruckner 2016-10-13 23:42:34 +07:00
parent 2f002879c0
commit 3f6716e63a
1 changed files with 13 additions and 1 deletions

View File

@ -61,7 +61,19 @@ static int cJSONUtils_Pstrcasecmp(const char *a, const char *e)
return 0;
}
static int cJSONUtils_PointerEncodedstrlen(const char *s) {int l=0;for (;*s;s++,l++) if (*s=='~' || *s=='/') l++;return l;}
static int cJSONUtils_PointerEncodedstrlen(const char *s)
{
int l = 0;
for (; *s; s++, l++)
{
if ((*s == '~') || (*s == '/'))
{
l++;
}
}
return l;
}
static void cJSONUtils_PointerEncodedstrcpy(char *d,const char *s)
{