Sortix nightly manual
This manual documents Sortix nightly, a development build that has not been officially released. You can instead view this document in the latest official manual.
BIND_TEXTDOMAIN_CODESET(3) | Library Functions Manual | BIND_TEXTDOMAIN_CODESET(3) |
NAME
bind_textdomain_codeset - set encoding of message translationsSYNOPSIS
#include <libintl.h>char * bind_textdomain_codeset (const char * domainname,
const char * codeset);
DESCRIPTION
The bind_textdomain_codeset function sets the output codeset for message catalogs for domain domainname.RETURN VALUE
If successful, the bind_textdomain_codeset function returns the current codeset for domain domainname, after possibly changing it. The resulting string is valid until the next bind_textdomain_codeset call for the same domainname and must not be modified or freed. If a memory allocation failure occurs, it sets errno to ENOMEM and returns NULL. If no codeset has been set for domain domainname, it returns NULL.ERRORS
The following error can occur, among others:- ENOMEM
- Not enough memory available.
BUGS
The return type ought to be const char *, but is char * to avoid warnings in C code predating ANSI C.SEE ALSO
gettext(3), dgettext(3), dcgettext(3), ngettext(3), dngettext(3), dcngettext(3), textdomain(3), nl_langinfo(3), iconv_open(3)May 2001 | GNU gettext 0.20.1.124-32cf |