History log of /freebsd-10.1-release/lib/libc/locale/wcwidth.c
Revision Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
# 272461 02-Oct-2014 gjb

Copy stable/10@r272459 to releng/10.1 as part of
the 10.1-RELEASE process.

Approved by: re (implicit)
Sponsored by: The FreeBSD Foundation

# 256281 10-Oct-2013 gjb

Copy head (r256279) to stable/10 as part of the 10.0-RELEASE cycle.

Approved by: re (implicit)
Sponsored by: The FreeBSD Foundation


# 227753 20-Nov-2011 theraven

Implement xlocale APIs from Darwin, mainly for use by libc++. This adds a
load of _l suffixed versions of various standard library functions that use
the global locale, making them take an explicit locale parameter. Also
adds support for per-thread locales. This work was funded by the FreeBSD
Foundation.

Please test any code you have that uses the C standard locale functions!

Reviewed by: das (gdtoa changes)
Approved by: dim (mentor)


# 165903 08-Jan-2007 imp

Per Regents of the University of Calfornia letter, remove advertising
clause.

# If I've done so improperly on a file, please let me know.


# 133564 12-Aug-2004 tjr

Implement wcwidth() as an inline function.


# 129608 23-May-2004 tjr

Grab all the information we need about a character with one call to
__maskrune() instead of one direct call and one through iswprint().


# 102137 19-Aug-2002 ache

Use modern-style arguments declaration


# 102134 19-Aug-2002 ache

Write null wide-character as L'\0' like in other places


# 102124 19-Aug-2002 ache

According to SUSv2, always return 0 for null wide-character code


# 102096 19-Aug-2002 ache

Move internal defines from ctype.h here


# 102033 17-Aug-2002 ache

Move wcwidth() to separate file, it doesn't belong to iswctype.c at all