NeoMutt  2024-02-01-35-geee02f
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
message.h
Go to the documentation of this file.
1
23#ifndef MUTT_MUTT_MESSAGE_H
24#define MUTT_MUTT_MESSAGE_H
25
26#ifdef ENABLE_NLS
27#include <libintl.h>
28#define _(a) gettext(a)
29#ifdef gettext_noop
30#define N_(a) gettext_noop(a)
31#else
32#define N_(a) (a)
33#endif
34#else
35#define _(a) (a)
36#define N_(a) a
37#define ngettext(x, xs, n) (((n) == 1) ? (x) : (xs))
38#endif
39
40#endif /* MUTT_MUTT_MESSAGE_H */