oops, makedoc is used in the build process.
[apps/madmutt.git] / lib / intl.h
1 #ifndef _LIB_INTL_H
2 #define _LIB_INTL_H
3
4 /*
5  * config.h must be included by source file!
6  */
7
8 # ifdef ENABLE_NLS
9 #  include <libintl.h>
10 # define _(a) (gettext (a))
11 #  ifdef gettext_noop
12 #   define N_(a) gettext_noop (a)
13 #  else
14 #   define N_(a) (a)
15 #  endif
16 # else
17 #  define _(a) (a)
18 #  define N_(a) a
19 # endif
20
21 #endif /* !_LIB_INTL_H */