File: pot.h

package info (click to toggle)
quota 4.00~pre1-6
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 2,460 kB
  • ctags: 1,264
  • sloc: ansic: 10,845; sh: 614; perl: 333; makefile: 193
file content (18 lines) | stat: -rw-r--r-- 174 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef GUARD_POT_H
#define GUARD_POT_H

#ifdef USE_GETTEXT

#include <libintl.h>

#define _(x)	gettext((x))

#else

#define _(x) 	(x)

#endif

void gettexton(void);

#endif