0
0
mirror of https://github.com/ecki/net-tools.git synced 2024-11-11 11:09:21 +00:00
net-tools/intl.h
Phil Blundell d07aec8152 Use setlocale at program initialisation.
Patch from Arnaldo Carvalho de Melo.
2001-04-08 17:05:05 +00:00

13 lines
236 B
C

/* Dummy header for libintl.h */
#if I18N
#include <locale.h>
#undef __OPTIMIZE__
#include <libintl.h>
#define _(String) gettext((String))
#define N_(String) (String)
#else
#define _(String) (String)
#define N_(String) (String)
#endif