]> git.ipfire.org Git - thirdparty/glibc.git/blame - locale/programs/locfile.h
Update to 2.1.x development version
[thirdparty/glibc.git] / locale / programs / locfile.h
CommitLineData
c84142e8 1/* Copyright (C) 1996, 1997 Free Software Foundation, Inc.
6d52618b 2 This file is part of the GNU C Library.
c84142e8 3 Contributed by Ulrich Drepper <drepper@gnu.ai.mit.edu>, 1996.
19bc17a9 4
6d52618b
UD
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Library General Public License as
7 published by the Free Software Foundation; either version 2 of the
8 License, or (at your option) any later version.
19bc17a9 9
6d52618b
UD
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Library General Public License for more details.
19bc17a9 14
6d52618b
UD
15 You should have received a copy of the GNU Library General Public
16 License along with the GNU C Library; see the file COPYING.LIB. If not,
17 write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18 Boston, MA 02111-1307, USA. */
19bc17a9
RM
19
20#ifndef _LOCFILE_H
21#define _LOCFILE_H
22
23#include <sys/uio.h>
24
25#include "charset.h"
26
6d52618b 27/* Opaque types for the different locales. */
19bc17a9
RM
28struct locale_ctype_t;
29struct locale_collate_t;
30struct locale_monetary_t;
31struct locale_numeric_t;
32struct locale_time_t;
33struct locale_messages_t;
34
35struct localedef_t
36{
37 int failed;
38
39 int avail;
40 int binary;
41
42 union
43 {
44 void *generic;
45 struct locale_ctype_t *ctype;
46 struct locale_collate_t *collate;
47 struct locale_monetary_t *monetary;
48 struct locale_numeric_t *numeric;
49 struct locale_time_t *time;
50 struct locale_messages_t *messages;
51 } categories[6];
52
53 size_t len[6];
54};
55
c84142e8
UD
56/* Declared in localedef.c. */
57extern int be_quiet;
19bc17a9
RM
58
59/* Found in localedef.c. */
60void def_to_process (const char *name, int category);
61
62
63/* Found in locfile.c. */
64struct localedef_t *locfile_read (const char *filename,
65 struct charset_t *charset);
66
67void check_all_categories (struct localedef_t *locale,
68 struct charset_t *charset);
69
70void write_all_categories (struct localedef_t *locale,
75cd5204 71 struct charset_t *charset, const char *output_path);
19bc17a9
RM
72
73
74void write_locale_data (const char *output_path, const char *category,
75 size_t n_elem, struct iovec *vec);
76
77#endif /* locfile.h */