X-Git-Url: https://git.ucc.asn.au/?p=tpg%2Facess2.git;a=blobdiff_plain;f=Usermode%2FLibraries%2Flibintl.so_src%2Finclude_exp%2Flibintl.h;fp=Usermode%2FLibraries%2Flibintl.so_src%2Finclude_exp%2Flibintl.h;h=54c0993809134cd7e13d5f31b334fc95cc6c03ff;hp=0000000000000000000000000000000000000000;hb=845b6f9d90bb87b5e760e4d49aa93b0e003ab750;hpb=67a7fe2bb79eceaf10c572a99bd8345c4e81cf5b diff --git a/Usermode/Libraries/libintl.so_src/include_exp/libintl.h b/Usermode/Libraries/libintl.so_src/include_exp/libintl.h new file mode 100644 index 00000000..54c09938 --- /dev/null +++ b/Usermode/Libraries/libintl.so_src/include_exp/libintl.h @@ -0,0 +1,13 @@ +/* + */ +#ifndef _LIBINTL_H_ +#define _LIBINTL_H_ + +extern char *gettext(const char *msg); +extern char *dgettext(const char *domain, const char *msg); +extern char *dcgettext(const char *domain, const char *msg, int category); +extern char *ngettext(const char *msg, const char *msgp, unsigned long int n); +extern char *dngettext(const char *domain, const char *msg, const char *msgp, unsigned long int n); +extern char *dcngettext(const char *domain, const char *msg, const char *msgp, unsigned long int n, int category); + +#endif