fscanf-speed icon indicating copy to clipboard operation
fscanf-speed copied to clipboard

How fast is fscanf?

Results 1 fscanf-speed issues
Sort by recently updated
recently updated
newest added

I saw the same thing - reduction of runtime by about 50% by using `strtoi` and similar instead of `sscanf`. That's because `sscanf` tries to use locale-data, like thousands-separators and...