/usr/include/libgoffice-0.8/goffice/utils/go-locale.h is in libgoffice-0.8-dev 0.8.17-8.
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  | /*
 * go-locale.h:
 *
 * Copyright (C) 2007 Morten Welinder (terra@gnome.org)
 * Copyright (C) 2003-2005 Jody Goldberg (jody@gnome.org)
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of version 2 of the GNU General Public
 * License as published by the Free Software Foundation.
 *
 * 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, write to the Free Software
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301
 * USA
 */
#ifndef GO_LOCALE_H
#define GO_LOCALE_H
#include <glib.h>
#include <locale.h>
G_BEGIN_DECLS
char const *   go_setlocale               (int category, char const *val);
void	       go_locale_untranslated_booleans  (void);
char const *   go_locale_boolean_name     (gboolean b);
GString const *go_locale_get_currency     (gboolean *precedes, gboolean *space_sep);
char           go_locale_get_arg_sep      (void);
char           go_locale_get_col_sep      (void);
char           go_locale_get_row_sep      (void);
GString const *go_locale_get_thousand     (void);
GString const *go_locale_get_decimal      (void);
int            go_locale_month_before_day (void);
gboolean       go_locale_24h              (void);
GString const *go_locale_get_date_format  (void);
GString const *go_locale_get_time_format  (void);
void           _go_locale_shutdown        (void);
G_END_DECLS
#endif /* GO_LOCALE_H */
 |