/usr/include/gretl/gretl_intl.h is in libgretl1-dev 2016d-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 | /*
* gretl -- Gnu Regression, Econometrics and Time-series Library
* Copyright (C) 2001 Allin Cottrell and Riccardo "Jack" Lucchetti
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
#ifndef GRETL_INTL_H
#define GRETL_INTL_H
void gretl_push_c_numeric_locale (void);
void gretl_pop_c_numeric_locale (void);
int doing_nls (void);
int reset_local_decpoint (void);
int get_local_decpoint (void);
char *iso_to_ascii (char *s);
char *u8_to_ascii_convert (char *targ, const char *src,
int maxlen, char sub);
char *asciify_utf8_varname (char *s);
/* the following enumeration is organized by alphabetical order of
English name of language: Albanian, Basque, Bulgarian, ...
*/
typedef enum {
LANG_AUTO = 0,
LANG_C,
LANG_SQ,
LANG_EU,
LANG_BG,
LANG_CA,
LANG_ZH_TW,
LANG_CS,
LANG_FR,
LANG_GL,
LANG_DE,
LANG_EL,
LANG_IT,
LANG_JA,
LANG_PL,
LANG_PT,
LANG_PT_BR,
LANG_RO,
LANG_RU,
LANG_ES,
LANG_TR,
LANG_UK,
LANG_MAX
} GretlLangCode;
const char *lang_string_from_id (int langid);
char *utf8_to_cp (const char *s);
char *utf8_to_rtf (const char *s);
char *utf8_to_latin (const char *s);
int iso_latin_version (void);
int lang_id_from_name (const char *s);
int lang_id_from_code (const char *s);
void set_alt_gettext_mode (PRN *prn);
void set_lcnumeric (int langid, int lcnumeric);
int gretl_is_ascii (const char *buf);
int force_language (int langid);
int test_locale (const char *langstr);
int gretl_recode_file (const char *path1,
const char *path2,
const char *from_set,
const char *to_set,
PRN *prn);
int chinese_locale (void);
int japanese_locale (void);
int east_asian_locale (void);
int get_utf_width (const char *str, int width);
#ifdef ENABLE_NLS
char *iso_gettext (const char *msgid);
char *alt_gettext (const char *msgid);
void set_gretl_charset (void);
void set_native_utf8 (int s);
char *sprint_l2_to_ascii (char *targ, const char *s, size_t len);
int get_translated_width (const char *str);
# define UTF_WIDTH(s, w) get_utf_width(s, w)
# define TRANSLATED_WIDTH(s) get_translated_width(s)
#else /* !ENABLE_NLS */
#define gettext(s) s
#define iso_gettext(s) s
#define alt_gettext(s) s
# define UTF_WIDTH(s, w) w
# define TRANSLATED_WIDTH(s) strlen(s)
#endif /* ENABLE_NLS */
#endif /* GRETL_INTL_H */
|