On 16.10.2008, Linus Nielsen Feltzing wrote: > Joseph Garvin wrote: >> There don't appear to be any builtin functions for converting >> strings to floats or longs, so I wrote a couple, but they're >> very very rough.
> We use sscanf() for that in Rockbox, but it doesn't support > floats, since we don't use floating point calculations in this > project. There is no sscanf() in the rockbox core, because its more advanced features aren't needed. sscanf.c does exist in firmware/common, but is only compiled and linked to doom. In the core we use atoi(). Regards, Jens
