about summary refs log tree commit diff
path: root/include/uchar.h
Commit message (Collapse)AuthorAgeFilesLines
* uchar.h: define char16_t and char32_t for old c++Szabolcs Nagy2018-07-171-1/+3
| | | | | | | | including uchar.h in c++ code is only well defined in c++11 onwards where char16_t and char32_t type definitions must be hidden since they are keywords. however some c++ code compiled for older c++ standard include uchar.h too and they need the typedefs, this fix makes such code work.
* implement uchar.h (C11 UTF-16/32 conversion) interfacesRich Felker2014-10-131-0/+27