24 | 24 | Parsing floating-point numbers in C is going to be pretty damn tricky, so we might just try and use `setlocale()` to set the locale to `C` and restore it to whatever it was before after doing so. I have no idea what the effects are of calling these functions often in the same program, and if there's a performance impact (it might be loading the strings or formatting rules for this locale every single time, on the fly, since it'll be designed for "normal" programs in which `setlocale()` will be called only a handful of times) |