summaryrefslogtreecommitdiffstats
path: root/libass/ass_string.h
Commit message (Collapse)AuthorAgeFilesLines
* Include config.h in all source files and in no headersOleg Oshmyan2015-09-171-2/+0
| | | | | | | | | This way, #include "config.h" is consistently the very first thing the compiler sees when compiling any file. Some source files currently don't use anything defined in config.h, but it's easier and less error-prone to include it now to anticipate possible future changes in those files, config.h or other headers.
* NIH: add locale-independent string functionsGrigori Goronzy2015-09-111-0/+40
OS or platform-specific locale independent functions are painful to use and/or not available, so roll our own. Not great but the least painful and least intrusive. v2: fix indexing, use static inline