"Fossies" - the Fresh Open Source Software Archive

Member "statist-1.4.2/src/gettext.h" (31 Aug 2005, 617 Bytes) of package /linux/privat/old/statist-1.4.2.tar.gz:


As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) C and C++ source code syntax highlighting (style: standard) with prefixed line numbers and code folding option. Alternatively you can here view or download the uninterpreted source code file. For more information about "gettext.h" see the Fossies "Dox" file reference documentation.

    1 /* This file is part of statist
    2 **
    3 ** It is distributed under the GNU General Public License v>=2.
    4 ** See the file COPYING for details.
    5 **
    6 ** (c) 1997 Dirk Melcher
    7 ** (c) Bernhard Reiter  http://www.usf.Uni-Osnabrueck.DE/~breiter
    8 **
    9 ***************************************************************/
   10 
   11 /* gettext.h for STATIST */
   12 
   13 #ifndef STATIST_GETTEXT_HEADER
   14 #define STATIST_GETTEXT_HEADER
   15 
   16 #ifdef NO_GETTEXT
   17     #define _(english) (english)
   18 #else
   19     #include <libintl.h>
   20     #include <locale.h>
   21     #define _(string) gettext (string)
   22 #endif /* NO_GETTEXT */
   23 
   24 #define N_(english) (english)
   25 
   26 
   27 #endif /* STATIST_GETTEXT_HEADER */