diff options
author | ed <ed@FreeBSD.org> | 2013-05-21 19:59:37 +0000 |
---|---|---|
committer | ed <ed@FreeBSD.org> | 2013-05-21 19:59:37 +0000 |
commit | 05bd8275f3829e7d1f55e8faabd64095eab3c291 (patch) | |
tree | 78913f76e25776c6cc64161dd2346bac56d4191e /include/xlocale/Makefile | |
parent | b6bdb6d2f3ebdde975a369669792021f70118a50 (diff) | |
download | FreeBSD-src-05bd8275f3829e7d1f55e8faabd64095eab3c291.zip FreeBSD-src-05bd8275f3829e7d1f55e8faabd64095eab3c291.tar.gz |
Add <uchar.h>.
The <uchar.h> header, part of C11, adds a small number of utility
functions for 16/32-bit "universal" characters, which may or may not be
UTF-16/32. As our wchar_t is already ISO 10646, simply add light-weight
wrappers around wcrtomb() and mbrtowc().
While there, also add (non-yet-standard) _l functions, similar to the
ones we already have for the other locale-dependent functions.
Reviewed by: theraven
Diffstat (limited to 'include/xlocale/Makefile')
-rw-r--r-- | include/xlocale/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/xlocale/Makefile b/include/xlocale/Makefile index e45ddca..a35db50 100644 --- a/include/xlocale/Makefile +++ b/include/xlocale/Makefile @@ -2,7 +2,7 @@ NO_OBJ= INCS= _ctype.h _inttypes.h _langinfo.h _locale.h _monetary.h _stdio.h\ - _stdlib.h _string.h _time.h _wchar.h + _stdlib.h _string.h _time.h _uchar.h _wchar.h INCSDIR=${INCLUDEDIR}/xlocale .include <bsd.prog.mk> |