File: intl.h

package info (click to toggle)
net-tools 1.60%2Bgit20180626.aebd88e-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 2,628 kB
  • sloc: ansic: 14,596; makefile: 385; sh: 105
file content (12 lines) | stat: -rw-r--r-- 236 bytes parent folder | download | duplicates (22)
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