svg_loader: removed unused code

The custom strtof function is defined
in tvgSvgUtil.
This commit is contained in:
Mira Grudzinska 2023-08-01 14:54:47 +02:00 committed by Hermet Park
parent 052cfea4b1
commit 07c05b52dc

View file

@ -561,18 +561,4 @@ struct Box
float x, y, w, h;
};
/*
* https://docs.microsoft.com/en-us/cpp/c-runtime-library/reference/strtof-strtod-l-wcstod-wcstod-l?view=vs-2017
*
* src should be one of the following form :
*
* [whitespace] [sign] {digits [radix digits] | radix digits} [{e | E} [sign] digits]
* [whitespace] [sign] {INF | INFINITY}
* [whitespace] [sign] NAN [sequence]
*
* No hexadecimal form supported
* no sequence supported after NAN
*/
float customStrtof(const char *nptr, char **endptr);
#endif