keylogin(1): Fix a warning and raise WARNS to 6.
[dragonfly.git] / lib / libc / citrus / citrus_ctype_fallback.c
1 /* $NetBSD: src/lib/libc/citrus/citrus_ctype_fallback.c,v 1.2 2003/06/27 14:52:25 yamt Exp $ */
2
3 /*-
4  * Copyright (c)2003 Citrus Project,
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice, this list of conditions and the following disclaimer.
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
17  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
20  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26  * SUCH DAMAGE.
27  */
28
29 #include <sys/types.h>
30 #include <assert.h>
31 #include <wchar.h>
32 #include <stdio.h>
33 #include <string.h>
34 #include <limits.h>
35
36 #include "citrus_module.h"
37 #include "citrus_ctype.h"
38 #include "citrus_ctype_fallback.h"
39
40 /*
41  * for ABI version >= 0x00000002
42  */ 
43
44 int
45 _citrus_ctype_btowc_fallback(_citrus_ctype_rec_t * __restrict cc,
46                              int c, wint_t * __restrict wcresult)
47 {
48         char mb;
49         /*
50          * what we need is _PRIVSIZE
51          * and we know that it's smaller than sizeof(mbstate_t).
52          */
53         char pspriv[sizeof(mbstate_t)];
54         wchar_t wc;
55         size_t nr;
56         int err;
57
58         _DIAGASSERT(cc != NULL && cc->cc_closure != NULL);
59
60         if (c == EOF) {
61                 *wcresult = WEOF;
62                 return 0;
63         }
64
65         memset(&pspriv, 0, sizeof(pspriv));
66         mb = (char)(unsigned)c;
67         err = _citrus_ctype_mbrtowc(cc, &wc, &mb, 1, &pspriv, &nr);
68         if (!err && (nr == 0 || nr == 1))
69                 *wcresult = wc;
70         else
71                 *wcresult = WEOF;
72
73         return 0;
74 }
75
76 int
77 _citrus_ctype_wctob_fallback(_citrus_ctype_rec_t * __restrict cc,
78                              wint_t wc, int * __restrict cresult)
79 {
80         /*
81          * what we need is _PRIVSIZE
82          * and we know that it's smaller than sizeof(mbstate_t).
83          */
84         char pspriv[sizeof(mbstate_t)];
85         char buf[MB_LEN_MAX];
86         size_t nr;
87         int err;
88
89         _DIAGASSERT(cc != NULL && cc->cc_closure != NULL);
90
91         if (wc == WEOF) {
92                 *cresult = EOF;
93                 return 0;
94         }
95         memset(&pspriv, 0, sizeof(pspriv));
96         err = _citrus_ctype_wcrtomb(cc, buf, (wchar_t)wc, &pspriv, &nr);
97         if (!err && nr == 1)
98                 *cresult = buf[0];
99         else
100                 *cresult = EOF;
101
102         return 0;
103 }