$Id$ *** Routing Implementation Notes *** Internationalization -------------------- In the Standard C Library, there are routines iconv_open(3), iconv_close(3), and iconv(3) for codeset conversion which conform to IEEE Std 1003.1-2001 (POSIX.1). For localization of information, the Uniforum gettext(3) interface is a non-standardized but widely supported interface which is easier to use than the leading alternative, X/Open catgets(3). We will use ISO C's "wide characters" (wchar_t, wint_t) for locale-specific strings. In the NetBSD Manual, NLS(7) is the Native Language Support Overview. $Id$