summaryrefslogtreecommitdiffstats
path: root/libass/ass_strtod.c
Commit message (Collapse)AuthorAgeFilesLines
* ass_strtod: use modern Cwm42014-01-241-7/+8
|
* Fix a warning due to added constnessGrigori Goronzy2010-01-121-1/+1
|
* Constify table in ass_strtodYuriy M. Kaminskiy2010-01-121-0/+2
|
* Replace strtod with locale-independent strtodGrigori Goronzy2010-01-051-0/+247
strtod respects the locale and in some locales, the decimal separator is not a point, leading to parsing errors in tags like \pos(23.4,5), which are perfectly valid. As there isn't a really portable way to use a particular locale just for one call to strtod, reimplement it. The implementation was taken from the 1.8 branch of Ruby.