Code

Imported upstream version 1.4.8
[pkg-rrdtool.git] / src / rrd_i18n.h
1 /*****************************************************************************
2  * RRDtool 1.4.8  Copyright by Takao Fujiwara, 2008
3  *****************************************************************************
4  * rrd_i18n.h   Common Header File
5  *****************************************************************************/
6 #ifdef  __cplusplus
7 extern    "C" {
8 #endif
11 #ifndef _RRD_I18N_H
12 #define _RRD_I18N_H
14 #ifdef ENABLE_NLS
15 #  ifdef _LIBC
16 #    include <libintl.h>
17 #  else
18 #    include "gettext.h"
19 #    define _(String) gettext (String)
20 #  endif
21 #else
22 #  define _(String) (String)
23 #endif
25 #define N_(String) String
27 #endif
29 #ifdef  __cplusplus
30 }
31 #endif