mirror of https://git.musl-libc.org/git/musl
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
695 B
25 lines
695 B
#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
|
|
|