File: i18n.h

package info (click to toggle)
grep-dctrl 1.3a
  • links: PTS
  • area: main
  • in suites: potato
  • size: 660 kB
  • ctags: 403
  • sloc: ansic: 4,004; sh: 358; makefile: 226; sed: 93
file content (15 lines) | stat: -rw-r--r-- 247 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15


#ifndef I18N_H__
#define I18N_H__

#ifdef HAVE_GETTEXT
#include <libintl.h>
#define  _(String) gettext(String)
#else
#define  _(String) (String)
#define textdomain(Domain)
#define bindtextdomain(Package, Directory)
#endif

#endif /* I18N_H__ */