File: i18n.h

package info (click to toggle)
fetchmail 6.6.2-2
  • links: PTS
  • area: main
  • in suites: sid
  • size: 7,912 kB
  • sloc: ansic: 19,458; sh: 7,133; python: 2,395; perl: 564; yacc: 447; lex: 286; makefile: 261; awk: 124; lisp: 84; exp: 43; sed: 17
file content (11 lines) | stat: -rw-r--r-- 200 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
#ifndef _I18N_H
#define _I18N_H 42

/* gettext.h is a regular GNU gettext header now */
#include "gettext.h"

/* local modifications */
#define GT_(s) gettext(s)
#define N_(s) gettext_noop(s)

#endif