File: intl.h

package info (click to toggle)
sdpnetstat 1.60-1
  • links: PTS
  • area: main
  • in suites: squeeze, wheezy
  • size: 1,436 kB
  • ctags: 1,134
  • sloc: ansic: 13,123; makefile: 299; sh: 102
file content (12 lines) | stat: -rw-r--r-- 236 bytes parent folder | download | duplicates (20)
1
2
3
4
5
6
7
8
9
10
11
12
/* 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