#ifndef _INTL_H_ #define _INTL_H_ #ifdef HAVE_CONFIG_H #include #endif #ifndef HAVE_STPCPY #include extern inline char * stpcpy(char *dest, const char *src) { char c; do { c = *dest++ = *src++; } while (c); return dest; } #endif #if defined(ENABLE_NLS) && defined(HAVE_GETTEXT) # include # define X_(x) gettext(x) # define N_(x) (x) # define _(x) gettext(x) #else # define X_(x) (x) # define N_(x) (x) # define _(x) (x) # define textdomain(x) #endif /* Define this, if you have gettext */ #define HAVE_GETTEXT 1 #endif /* _INTL_H_ */