• M
    reformatting: cJSON_Utils_GetPointer · 5713edb7
    Max Bruckner 提交于
    NOTE: This can change the assembly slightly, in my case it reordered two
    instructions. This is due to the change from:
    
        which = (10 * which) + *pointer++ - '0';
    
    to
    
        which = (10 * which) + (*pointer++ - '0');
    
    This means that after the change, the subtraction runs before the
    addition instead of after that. That shouldn't change the behavior
    though.
    5713edb7
cJSON_Utils.c 14.2 KB