1 /*
2 * This file and its contents are supplied under the terms of the
3 * Common Development and Distribution License ("CDDL"), version 1.0.
4 * You may only use this file in accordance with the terms of version
5 * 1.0 of the CDDL.
6 *
7 * A full copy of the text of the CDDL should have accompanied this
8 * source. A copy of the CDDL is also available via the Internet at
9 * http://www.illumos.org/license/CDDL.
10 */
11
12 /*
13 * Copyright 2010 Nexenta Systems, Inc. All rights reserved.
14 */
15
16 /*
17 * LC_MESSAGES database generation routines for localedef.
18 */
19
20 #include <stdio.h>
21 #include <stdlib.h>
22 #include <errno.h>
23 #include <sys/types.h>
24 #include <string.h>
25 #include <unistd.h>
26 #include <alloca.h>
27 #include "localedef.h"
28 #include "parser.tab.h"
29 #include "lmessages.h"
30
31 static struct lc_messages_T msgs;
32
33 void
34 init_messages(void)
35 {
36 (void) memset(&msgs, 0, sizeof (msgs));
37 }
38
39 void
40 add_message(wchar_t *wcs)
41 {
42 char *str;
43
44 if ((str = to_mb_string(wcs)) == NULL) {
45 INTERR;
46 return;
47 }
48 free(wcs);
49
50 switch (last_kw) {
51 case T_YESSTR:
|
1 /*
2 * This file and its contents are supplied under the terms of the
3 * Common Development and Distribution License ("CDDL"), version 1.0.
4 * You may only use this file in accordance with the terms of version
5 * 1.0 of the CDDL.
6 *
7 * A full copy of the text of the CDDL should have accompanied this
8 * source. A copy of the CDDL is also available via the Internet at
9 * http://www.illumos.org/license/CDDL.
10 */
11
12 /*
13 * Copyright 2013 Garrett D'Amore <garrett@damore.org>
14 * Copyright 2010 Nexenta Systems, Inc. All rights reserved.
15 */
16
17 /*
18 * LC_MESSAGES database generation routines for localedef.
19 */
20
21 #include <stdio.h>
22 #include <stdlib.h>
23 #include <errno.h>
24 #include <sys/types.h>
25 #include <string.h>
26 #include <unistd.h>
27 #include <alloca.h>
28 #include "localedef.h"
29 #include "parser.tab.h"
30 #include "lmessages.h"
31
32 static struct lc_messages msgs;
33
34 void
35 init_messages(void)
36 {
37 (void) memset(&msgs, 0, sizeof (msgs));
38 }
39
40 void
41 add_message(wchar_t *wcs)
42 {
43 char *str;
44
45 if ((str = to_mb_string(wcs)) == NULL) {
46 INTERR;
47 return;
48 }
49 free(wcs);
50
51 switch (last_kw) {
52 case T_YESSTR:
|