Sha256: 055dc853c432f9ab8978cfb6d3c006f599a5d48549d086ba6bb73672db4d284a
Contents?: true
Size: 695 Bytes
Versions: 5
Compression:
Stored size: 695 Bytes
Contents
#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
Version data entries
5 entries across 5 versions & 1 rubygems