COOPY » Guide  version 0.6.5
Defines | Functions
/home/paulfitz/cvs/coopy_scm/coopy/src/libcoopy_full/gnulib_getopt/gettext.h File Reference
#include <string.h>
#include <stdlib.h>

Go to the source code of this file.

Defines

#define gettext(Msgid)   ((const char *) (Msgid))
#define dgettext(Domainname, Msgid)   ((void) (Domainname), gettext (Msgid))
#define dcgettext(Domainname, Msgid, Category)   ((void) (Category), dgettext (Domainname, Msgid))
#define ngettext(Msgid1, Msgid2, N)
#define dngettext(Domainname, Msgid1, Msgid2, N)   ((void) (Domainname), ngettext (Msgid1, Msgid2, N))
#define dcngettext(Domainname, Msgid1, Msgid2, N, Category)   ((void) (Category), dngettext (Domainname, Msgid1, Msgid2, N))
#define textdomain(Domainname)   ((const char *) (Domainname))
#define bindtextdomain(Domainname, Dirname)   ((void) (Domainname), (const char *) (Dirname))
#define bind_textdomain_codeset(Domainname, Codeset)   ((void) (Domainname), (const char *) (Codeset))
#define gettext_noop(String)   String
#define GETTEXT_CONTEXT_GLUE   "\004"
#define pgettext(Msgctxt, Msgid)   pgettext_aux (NULL, Msgctxt GETTEXT_CONTEXT_GLUE Msgid, Msgid, LC_MESSAGES)
#define dpgettext(Domainname, Msgctxt, Msgid)   pgettext_aux (Domainname, Msgctxt GETTEXT_CONTEXT_GLUE Msgid, Msgid, LC_MESSAGES)
#define dcpgettext(Domainname, Msgctxt, Msgid, Category)   pgettext_aux (Domainname, Msgctxt GETTEXT_CONTEXT_GLUE Msgid, Msgid, Category)
#define npgettext(Msgctxt, Msgid, MsgidPlural, N)   npgettext_aux (NULL, Msgctxt GETTEXT_CONTEXT_GLUE Msgid, Msgid, MsgidPlural, N, LC_MESSAGES)
#define dnpgettext(Domainname, Msgctxt, Msgid, MsgidPlural, N)   npgettext_aux (Domainname, Msgctxt GETTEXT_CONTEXT_GLUE Msgid, Msgid, MsgidPlural, N, LC_MESSAGES)
#define dcnpgettext(Domainname, Msgctxt, Msgid, MsgidPlural, N, Category)   npgettext_aux (Domainname, Msgctxt GETTEXT_CONTEXT_GLUE Msgid, Msgid, MsgidPlural, N, Category)
#define _LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS
#define pgettext_expr(Msgctxt, Msgid)   dcpgettext_expr (NULL, Msgctxt, Msgid, LC_MESSAGES)
#define dpgettext_expr(Domainname, Msgctxt, Msgid)   dcpgettext_expr (Domainname, Msgctxt, Msgid, LC_MESSAGES)
#define npgettext_expr(Msgctxt, Msgid, MsgidPlural, N)   dcnpgettext_expr (NULL, Msgctxt, Msgid, MsgidPlural, N, LC_MESSAGES)
#define dnpgettext_expr(Domainname, Msgctxt, Msgid, MsgidPlural, N)   dcnpgettext_expr (Domainname, Msgctxt, Msgid, MsgidPlural, N, LC_MESSAGES)

Functions

static const char * pgettext_aux (const char *domain, const char *msg_ctxt_id, const char *msgid, int category)
static const char * npgettext_aux (const char *domain, const char *msg_ctxt_id, const char *msgid, const char *msgid_plural, unsigned long int n, int category)
static const char * dcpgettext_expr (const char *domain, const char *msgctxt, const char *msgid, int category)
static const char * dcnpgettext_expr (const char *domain, const char *msgctxt, const char *msgid, const char *msgid_plural, unsigned long int n, int category)

Define Documentation

#define _LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS
Value:
(((__GNUC__ >= 3 || __GNUG__ >= 2) && !defined __STRICT_ANSI__) \
   /* || __STDC_VERSION__ >= 199901L */ )

Definition at line 186 of file gettext.h.

#define bind_textdomain_codeset (   Domainname,
  Codeset 
)    ((void) (Domainname), (const char *) (Codeset))

Definition at line 90 of file gettext.h.

#define bindtextdomain (   Domainname,
  Dirname 
)    ((void) (Domainname), (const char *) (Dirname))

Definition at line 87 of file gettext.h.

#define dcgettext (   Domainname,
  Msgid,
  Category 
)    ((void) (Category), dgettext (Domainname, Msgid))

Definition at line 71 of file gettext.h.

Referenced by dcpgettext_expr(), and pgettext_aux().

#define dcngettext (   Domainname,
  Msgid1,
  Msgid2,
  N,
  Category 
)    ((void) (Category), dngettext (Domainname, Msgid1, Msgid2, N))

Definition at line 82 of file gettext.h.

Referenced by dcnpgettext_expr(), and npgettext_aux().

#define dcnpgettext (   Domainname,
  Msgctxt,
  Msgid,
  MsgidPlural,
  N,
  Category 
)    npgettext_aux (Domainname, Msgctxt GETTEXT_CONTEXT_GLUE Msgid, Msgid, MsgidPlural, N, Category)

Definition at line 137 of file gettext.h.

#define dcpgettext (   Domainname,
  Msgctxt,
  Msgid,
  Category 
)    pgettext_aux (Domainname, Msgctxt GETTEXT_CONTEXT_GLUE Msgid, Msgid, Category)

Definition at line 126 of file gettext.h.

#define dgettext (   Domainname,
  Msgid 
)    ((void) (Domainname), gettext (Msgid))

Definition at line 69 of file gettext.h.

#define dngettext (   Domainname,
  Msgid1,
  Msgid2,
 
)    ((void) (Domainname), ngettext (Msgid1, Msgid2, N))

Definition at line 79 of file gettext.h.

#define dnpgettext (   Domainname,
  Msgctxt,
  Msgid,
  MsgidPlural,
 
)    npgettext_aux (Domainname, Msgctxt GETTEXT_CONTEXT_GLUE Msgid, Msgid, MsgidPlural, N, LC_MESSAGES)

Definition at line 135 of file gettext.h.

#define dnpgettext_expr (   Domainname,
  Msgctxt,
  Msgid,
  MsgidPlural,
 
)    dcnpgettext_expr (Domainname, Msgctxt, Msgid, MsgidPlural, N, LC_MESSAGES)

Definition at line 241 of file gettext.h.

#define dpgettext (   Domainname,
  Msgctxt,
  Msgid 
)    pgettext_aux (Domainname, Msgctxt GETTEXT_CONTEXT_GLUE Msgid, Msgid, LC_MESSAGES)

Definition at line 124 of file gettext.h.

#define dpgettext_expr (   Domainname,
  Msgctxt,
  Msgid 
)    dcpgettext_expr (Domainname, Msgctxt, Msgid, LC_MESSAGES)

Definition at line 196 of file gettext.h.

#define gettext (   Msgid)    ((const char *) (Msgid))

Definition at line 67 of file gettext.h.

#define GETTEXT_CONTEXT_GLUE   "\004"

Definition at line 111 of file gettext.h.

#define gettext_noop (   String)    String

Definition at line 108 of file gettext.h.

#define ngettext (   Msgid1,
  Msgid2,
 
)
Value:
((N) == 1 \
     ? ((void) (Msgid2), (const char *) (Msgid1)) \
     : ((void) (Msgid1), (const char *) (Msgid2)))

Definition at line 74 of file gettext.h.

#define npgettext (   Msgctxt,
  Msgid,
  MsgidPlural,
 
)    npgettext_aux (NULL, Msgctxt GETTEXT_CONTEXT_GLUE Msgid, Msgid, MsgidPlural, N, LC_MESSAGES)

Definition at line 132 of file gettext.h.

#define npgettext_expr (   Msgctxt,
  Msgid,
  MsgidPlural,
 
)    dcnpgettext_expr (NULL, Msgctxt, Msgid, MsgidPlural, N, LC_MESSAGES)

Definition at line 239 of file gettext.h.

#define pgettext (   Msgctxt,
  Msgid 
)    pgettext_aux (NULL, Msgctxt GETTEXT_CONTEXT_GLUE Msgid, Msgid, LC_MESSAGES)

Definition at line 121 of file gettext.h.

#define pgettext_expr (   Msgctxt,
  Msgid 
)    dcpgettext_expr (NULL, Msgctxt, Msgid, LC_MESSAGES)

Definition at line 194 of file gettext.h.

#define textdomain (   Domainname)    ((const char *) (Domainname))

Definition at line 85 of file gettext.h.


Function Documentation

static const char* dcnpgettext_expr ( const char *  domain,
const char *  msgctxt,
const char *  msgid,
const char *  msgid_plural,
unsigned long int  n,
int  category 
) [static]

Definition at line 252 of file gettext.h.

References dcngettext, and NULL.

static const char* dcpgettext_expr ( const char *  domain,
const char *  msgctxt,
const char *  msgid,
int  category 
) [static]

Definition at line 207 of file gettext.h.

References dcgettext, and NULL.

static const char* npgettext_aux ( const char *  domain,
const char *  msg_ctxt_id,
const char *  msgid,
const char *  msgid_plural,
unsigned long int  n,
int  category 
) [static]

Definition at line 167 of file gettext.h.

References dcngettext.

static const char* pgettext_aux ( const char *  domain,
const char *  msg_ctxt_id,
const char *  msgid,
int  category 
) [static]

Definition at line 148 of file gettext.h.

References dcgettext.

 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Defines