aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorFritz Elfert <felfert@to.com>2001-03-01 00:22:23 +0000
committerFritz Elfert <felfert@to.com>2001-03-01 00:22:23 +0000
commit75007da068aac10fed90fc5234ab2d50deed3e61 (patch)
treebe0a8ebba9bad4ccab4600c60d9e7fcc21dc7837 /include
parentd8ae774198cf180fcaa4a2512dd94b4dbfdfd72d (diff)
downloadplptools-75007da068aac10fed90fc5234ab2d50deed3e61.tar.gz
plptools-75007da068aac10fed90fc5234ab2d50deed3e61.tar.bz2
plptools-75007da068aac10fed90fc5234ab2d50deed3e61.zip
Modified icons.
Started NLS support. Added kpsion KDE2 application. Unified file-headers.
Diffstat (limited to 'include')
-rw-r--r--include/intl.h33
1 files changed, 33 insertions, 0 deletions
diff --git a/include/intl.h b/include/intl.h
new file mode 100644
index 0000000..a4e0727
--- /dev/null
+++ b/include/intl.h
@@ -0,0 +1,33 @@
+#ifndef _INTL_H_
+#define _INTL_H_
+
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
+#ifndef HAVE_STPCPY
+#include <string.h>
+
+extern inline 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)
+#endif
+
+/* Define this, if you have gettext */
+#define HAVE_GETTEXT 1
+
+#endif /* _INTL_H_ */
+