Files
lcdproc/contrib/interface-demo2/intl.h
T

13 lines
236 B
C
Raw Normal View History

2006-02-25 18:23:24 +00:00
/* 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