Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-05-06 08:41:17

0001 /* GLIB - Library of useful routines for C programming
0002  * Copyright (C) 1995-1997, 2002  Peter Mattis, Red Hat, Inc.
0003  *
0004  * SPDX-License-Identifier: LGPL-2.1-or-later
0005  *
0006  * This library is free software; you can redistribute it and/or
0007  * modify it under the terms of the GNU Lesser General Public
0008  * License as published by the Free Software Foundation; either
0009  * version 2.1 of the License, or (at your option) any later version.
0010  *
0011  * This library is distributed in the hope that it will be useful,
0012  * but WITHOUT ANY WARRANTY; without even the implied warranty of
0013  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
0014  * Lesser General Public License for more details.
0015  *
0016  * You should have received a copy of the GNU Lesser General Public
0017  * License along with this library; if not, see <http://www.gnu.org/licenses/>.
0018  */
0019 
0020 #ifndef __G_I18N_H__
0021 #define __G_I18N_H__
0022 
0023 #include <glib.h>
0024 
0025 #include <libintl.h>
0026 #include <string.h>
0027 
0028 #define  _(String) gettext (String)
0029 #define Q_(String) g_dpgettext (NULL, String, 0)
0030 #define N_(String) (String)
0031 #define C_(Context,String) g_dpgettext (NULL, Context "\004" String, strlen (Context) + 1)
0032 #define NC_(Context, String) (String)
0033 
0034 #endif  /* __G_I18N_H__ */