aboutsummaryrefslogtreecommitdiffstats
path: root/lib/plpintl.h
blob: f1caa622f152ede6545b5335b9e134bfd8b8440a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#ifndef _INTL_H_
#define _INTL_H_

#ifdef HAVE_CONFIG_H
#include <config.h>
#endif

#ifndef HAVE_STPCPY
#include <string.h>

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 <libintl.h>
#  define N_(x) (x)
#  define _(x) gettext(x)
#else
#  define N_(x) (x)
#  define _(x) (x)
#  define textdomain(x)
#endif

/* Define this, if you have gettext */
#define HAVE_GETTEXT 1

#endif /* _INTL_H_ */