diff options
Diffstat (limited to 'system/include/libc/libintl.h')
-rw-r--r-- | system/include/libc/libintl.h | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/system/include/libc/libintl.h b/system/include/libc/libintl.h new file mode 100644 index 00000000..a2dada67 --- /dev/null +++ b/system/include/libc/libintl.h @@ -0,0 +1,25 @@ +#ifndef _LIBINTL_H +#define _LIBINTL_H + +#ifdef __cplusplus +extern "C" { +#endif + +#define __USE_GNU_GETTEXT 1 +#define __GNU_GETTEXT_SUPPORTED_REVISION(major) ((major) == 0 ? 1 : -1) + +char *gettext(const char *); +char *dgettext(const char *, const char *); +char *dcgettext(const char *, const char *, int); +char *ngettext(const char *, const char *, unsigned long); +char *dngettext(const char *, const char *, const char *, unsigned long); +char *dcngettext(const char *, const char *, const char *, unsigned long, int); +char *textdomain(const char *); +char *bindtextdomain (const char *, const char *); +char *bind_textdomain_codeset(const char *, const char *); + +#ifdef __cplusplus +} +#endif + +#endif |