]> cygwin.com Git - cygwin-apps/cygutils.git/blame - src/rename/nls.h
Fixes for cygstart; bump version number and documentation
[cygwin-apps/cygutils.git] / src / rename / nls.h
CommitLineData
b493aa03
CF
1int main(int argc, char *argv[]);
2
3#ifndef PACKAGE
4#define PACKAGE "util-linux"
5#endif
6
7#ifndef LOCALEDIR
8#define LOCALEDIR "/usr/share/locale"
9#endif
10
11#ifdef HAVE_locale_h
12# include <locale.h>
13#endif
14
15#if defined MAY_ENABLE_NLS && !defined DISABLE_NLS
16# include <libintl.h>
17# define _(Text) gettext (Text)
18# ifdef gettext_noop
19# define N_(String) gettext_noop (String)
20# else
21# define N_(String) (String)
22# endif
23#else
24# undef bindtextdomain
25# define bindtextdomain(Domain, Directory) /* empty */
26# undef textdomain
27# define textdomain(Domain) /* empty */
28# define _(Text) (Text)
29# define N_(Text) (Text)
30#endif
31
32
This page took 0.022344 seconds and 5 git commands to generate.