File: i18n.h

package info (click to toggle)
ceccomp 4.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,648 kB
  • sloc: ansic: 6,531; python: 1,078; makefile: 248; sh: 145
file content (16 lines) | stat: -rw-r--r-- 236 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef CONFIG_H
#include "config.h"
#endif
#ifndef I18N_H
#define I18N_H

#include <locale.h>
extern locale_t lc_c;
#ifdef LOCALEDIR
#include <libintl.h>
#define _(string) gettext (string)
#else
#define _(string) string
#endif

#endif