File: wctomb_r.c

package info (click to toggle)
picolibc 1.8.11-2
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 50,064 kB
  • sloc: ansic: 404,031; asm: 24,984; sh: 2,585; python: 2,289; perl: 680; pascal: 329; exp: 287; makefile: 222; cpp: 71; xml: 40
file content (689 lines) | stat: -rw-r--r-- 17,433 bytes parent folder | download
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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
/*
Copyright (c) 1990 Regents of the University of California.
All rights reserved.
 */
#include <errno.h>
#include <stdlib.h>
#include <string.h>
#include <wchar.h>
#include <locale.h>
#include <stdint.h>
#include <endian.h>
#include "mbctype.h"
#include "local.h"
#include "../ctype/local.h"

int
__ascii_wctomb(char *s, wchar_t wchar, mbstate_t *state)
{
    (void)state;
    if (s == NULL)
        return 0;

    if (wchar >= 0x80)
        return -1;

    *s = (char)wchar;
    return 1;
}

#ifdef __MB_CAPABLE

/* for some conversions, we use the __count field as a place to store a state value */
#define __state __count

int
__utf8_wctomb(char *s, wchar_t wchar, mbstate_t *state)
{
    (void)state; /* unused when wchar_t is 32-bits */
    if (s == NULL) {
#if __SIZEOF_WCHAR_T__ == 2
        state->__count = 0; /* UTF-16 encoding is state-dependent */
#endif
        return 0;
    }

#if __SIZEOF_WCHAR_T__ == 2
    if (state->__count == -4) {
        state->__count = 0;
        /* Check for low surrogate */
        if (0xdc00 <= (uwchar_t)wchar && (uwchar_t)wchar <= 0xdfff) {
            uint32_t tmp;
            /* Second half of a surrogate pair.  Reconstruct the full
               Unicode value and return the trailing three bytes of the
               UTF-8 character. */
            tmp = state->__value.__ucs | (wchar & 0x3ff);
            *s++ = 0xf0 | ((tmp & 0x1c0000) >> 18);
            *s++ = 0x80 | ((tmp & 0x3f000) >> 12);
            *s++ = 0x80 | ((tmp & 0xfc0) >> 6);
            *s = 0x80 | (tmp & 0x3f);
            return 4;
        }
        /* Not a low surrogate */
        return -1;
    }
#endif
    if (wchar <= 0x7f) {
        *s = wchar;
        return 1;
    }
    if (wchar >= 0x80 && wchar <= 0x7ff) {
        *s++ = 0xc0 | ((wchar & 0x7c0) >> 6);
        *s = 0x80 | (wchar & 0x3f);
        return 2;
    }
    if (wchar >= 0x800
#if __SIZEOF_WCHAR_T__ > 2
        && (uwchar_t)wchar <= 0xffff
#endif
    ) {
        if ((uwchar_t)wchar >= 0xd800 && (uwchar_t)wchar <= 0xdfff) {
#if __SIZEOF_WCHAR_T__ == 2
            if ((uwchar_t)wchar <= 0xdbff) {
                /* First half of a surrogate pair.  Store the state and
                   return 0. */
                state->__value.__ucs = ((uint32_t)(wchar & 0x3ff) << 10) + 0x10000;
                state->__count = -4;
                return 0;
            }
#endif
            /* Unexpected surrogate */
            return -1;
        }
        *s++ = 0xe0 | ((wchar & 0xf000) >> 12);
        *s++ = 0x80 | ((wchar & 0xfc0) >> 6);
        *s = 0x80 | (wchar & 0x3f);
        return 3;
    }
#if __SIZEOF_WCHAR_T__ == 4
    if ((uwchar_t)wchar >= (uwchar_t)0x10000 && (uwchar_t)wchar <= (uwchar_t)0x10ffff) {
        *s++ = 0xf0 | ((wchar & 0x1c0000) >> 18);
        *s++ = 0x80 | ((wchar & 0x3f000) >> 12);
        *s++ = 0x80 | ((wchar & 0xfc0) >> 6);
        *s = 0x80 | (wchar & 0x3f);
        return 4;
    }
#endif

    return -1;
}

#ifdef __MB_EXTENDED_CHARSETS_UCS

#if _BYTE_ORDER == _LITTLE_ENDIAN
#define __ucs2le_wctomb __ucs2_wctomb
#define __ucs2be_wctomb __ucs2swap_wctomb
#define __ucs4le_wctomb __ucs4_wctomb
#define __ucs4be_wctomb __ucs4swap_wctomb
#else
#define __ucs2le_wctomb __ucs2swap_wctomb
#define __ucs2be_wctomb __ucs2_wctomb
#define __ucs4le_wctomb __ucs4swap_wctomb
#define __ucs4be_wctomb __ucs4_wctomb
#endif

static int
__ucs2_wctomb(char *s, wchar_t wchar, mbstate_t *state)
{
    uint16_t uchar = (uint16_t)wchar;

    (void)state;
    /* Surrogates are invalid in UCS-2 */
    if ((uwchar_t)wchar >= 0xd800 && (uwchar_t)wchar <= 0xdfff)
        return -1;

    memcpy((void *)s, &uchar, 2);
    return 2;
}

static int
__ucs2swap_wctomb(char *s, wchar_t wchar, mbstate_t *state)
{
    uint16_t uchar = __bswap16((uint16_t)wchar);

    (void)state;
    /* Surrogates are invalid in UCS-2 */
    if ((uwchar_t)wchar >= 0xd800 && (uwchar_t)wchar <= 0xdfff)
        return -1;

    memcpy((void *)s, &uchar, 2);
    return 2;
}

static int
__ucs4_wctomb(char *s, wchar_t wchar, mbstate_t *state)
{
    uint32_t uchar = (uint32_t)wchar;

    (void)state;
    /* Surrogates are invalid in UCS-4 */
    if ((uwchar_t)wchar >= 0xd800 && (uwchar_t)wchar <= 0xdfff)
        return -1;

    memcpy((void *)s, &uchar, 4);
    return 4;
}

static int
__ucs4swap_wctomb(char *s, wchar_t wchar, mbstate_t *state)
{
    uint32_t uchar = __bswap32((uint32_t)wchar);

    (void)state;
    /* Surrogates are invalid in UCS-4 */
    if ((uwchar_t)wchar >= 0xd800 && (uwchar_t)wchar <= 0xdfff)
        return -1;

    memcpy((void *)s, &uchar, 4);
    return 4;
}

#endif /* __MB_EXTENDED_CHARSETS_UCS */

#ifdef __MB_EXTENDED_CHARSETS_JIS
#include "jis.h"

static int
__sjis_wctomb(char *s, wchar_t wchar, mbstate_t *state)
{
    (void)state;
    if (s == NULL)
        return 0; /* not state-dependent */

    uint16_t jischar = __unicode_to_shift_jis(wchar);

    if (jischar == INVALID_JIS)
        return -1;

    uint8_t char2 = (uint8_t)jischar;
    uint8_t char1 = (uint8_t)(jischar >> 8);

    if (char1 != 0x00) {
        s[0] = (char)char1;
        s[1] = (char)char2;
        return 2;
    } else {
        s[0] = (char)char2;
        return 1;
    }
}

static int
__eucjp_wctomb(char *s, wchar_t wchar, mbstate_t *state)
{
    (void)state;
    if (s == NULL)
        return 0; /* not state-dependent */

    uint32_t jischar = __unicode_to_euc_jp(wchar);

    if (jischar == INVALID_JIS)
        return -1;

    uint8_t char2 = (uint8_t)jischar;
    uint8_t char1 = (uint8_t)(jischar >> 8);
    uint8_t char0 = (uint8_t)(jischar >> 16);

    if (char0 != 0x00) {
        s[0] = (char)char0;
        s[1] = (char)char1;
        s[2] = (char)char2;
        return 3;
    } else if (char1 != 0x00) {
        s[0] = (char)char1;
        s[1] = (char)char2;
        return 2;
    } else {
        s[0] = (char)char2;
        return 1;
    }
}

static int
__jis_wctomb(char *s, wchar_t wchar, mbstate_t *state)
{
    if (s == NULL)
        return 1; /* state-dependent */

    uint16_t jischar = __unicode_to_jis(wchar);

    if (jischar == INVALID_JIS)
        return -1;

    uint8_t char2 = (uint8_t)jischar;
    uint8_t char1 = (uint8_t)(jischar >> 8);
    int     cnt = 0;

    if (char1 != 0x00) {
        /* first byte is non-zero; multi-byte char */
        if (state->__state == 0) {
            /* must switch from ASCII to JIS state */
            state->__state = 1;
            *s++ = ESC_CHAR;
            *s++ = '$';
            *s++ = 'B';
            cnt = 3;
        }
        s[0] = (char)char1;
        s[1] = (char)char2;
        return cnt + 2;
    } else {
        /* first byte zero; single-byte char */
        if (state->__state != 0) {
            /* must switch from JIS to ASCII state */
            state->__state = 0;
            *s++ = ESC_CHAR;
            *s++ = '(';
            *s++ = 'B';
            cnt = 3;
        }
        s[0] = (char)char2;
        return cnt + 1;
    }
}
#endif /* __MB_EXTENDED_CHARSETS_JIS */

#ifdef __MB_EXTENDED_CHARSETS_ISO

static int
___iso_wctomb(char *s, wchar_t wchar, enum locale_id id, mbstate_t *state)
{
    (void)state;
    if (s == NULL)
        return 0;

    /* wchars <= 0x9f translate to all ISO charsets directly. */
    if (wchar >= 0xa0) {
        unsigned char mb;

        if ((uwchar_t)wchar > __iso_8859_max[id - locale_ISO_8859_2])
            return -1;

        for (mb = 0; mb < 0x60; ++mb)
            if (__iso_8859_conv[id - locale_ISO_8859_2][mb] == (uwchar_t)wchar) {
                *s = (char)(mb + 0xa0);
                return 1;
            }
        return -1;
    }

    if (wchar >= 0x100) {
        return -1;
    }

    *s = (char)wchar;
    return 1;
}

static int
__iso_8859_1_wctomb(char *s, wchar_t wchar, mbstate_t *state)
{
    (void)state;
    if (s == NULL)
        return 0;

    if (wchar >= 0x100) {
        return -1;
    }

    *s = (char)wchar;
    return 1;
}

static int
__iso_8859_2_wctomb(char *s, wchar_t _wchar, mbstate_t *state)
{
    return ___iso_wctomb(s, _wchar, locale_ISO_8859_2, state);
}

static int
__iso_8859_3_wctomb(char *s, wchar_t _wchar, mbstate_t *state)
{
    return ___iso_wctomb(s, _wchar, locale_ISO_8859_3, state);
}

static int
__iso_8859_4_wctomb(char *s, wchar_t _wchar, mbstate_t *state)
{
    return ___iso_wctomb(s, _wchar, locale_ISO_8859_4, state);
}

static int
__iso_8859_5_wctomb(char *s, wchar_t _wchar, mbstate_t *state)
{
    return ___iso_wctomb(s, _wchar, locale_ISO_8859_5, state);
}

static int
__iso_8859_6_wctomb(char *s, wchar_t _wchar, mbstate_t *state)
{
    return ___iso_wctomb(s, _wchar, locale_ISO_8859_6, state);
}

static int
__iso_8859_7_wctomb(char *s, wchar_t _wchar, mbstate_t *state)
{
    return ___iso_wctomb(s, _wchar, locale_ISO_8859_7, state);
}

static int
__iso_8859_8_wctomb(char *s, wchar_t _wchar, mbstate_t *state)
{
    return ___iso_wctomb(s, _wchar, locale_ISO_8859_8, state);
}

static int
__iso_8859_9_wctomb(char *s, wchar_t _wchar, mbstate_t *state)
{
    return ___iso_wctomb(s, _wchar, locale_ISO_8859_9, state);
}

static int
__iso_8859_10_wctomb(char *s, wchar_t _wchar, mbstate_t *state)
{
    return ___iso_wctomb(s, _wchar, locale_ISO_8859_10, state);
}

static int
__iso_8859_11_wctomb(char *s, wchar_t _wchar, mbstate_t *state)
{
    return ___iso_wctomb(s, _wchar, locale_ISO_8859_11, state);
}

static int
__iso_8859_13_wctomb(char *s, wchar_t _wchar, mbstate_t *state)
{
    return ___iso_wctomb(s, _wchar, locale_ISO_8859_13, state);
}

static int
__iso_8859_14_wctomb(char *s, wchar_t _wchar, mbstate_t *state)
{
    return ___iso_wctomb(s, _wchar, locale_ISO_8859_14, state);
}

static int
__iso_8859_15_wctomb(char *s, wchar_t _wchar, mbstate_t *state)
{
    return ___iso_wctomb(s, _wchar, locale_ISO_8859_15, state);
}

static int
__iso_8859_16_wctomb(char *s, wchar_t _wchar, mbstate_t *state)
{
    return ___iso_wctomb(s, _wchar, locale_ISO_8859_16, state);
}

#endif /* __MB_EXTENDED_CHARSETS_ISO */

#ifdef __MB_EXTENDED_CHARSETS_WINDOWS

#ifdef __AVR__
/* The avr compiler gets confused by the use of __cp_conv below */
#ifdef __GNUCLIKE_PRAGMA_DIAGNOSTIC
#pragma GCC diagnostic ignored "-Wpragmas"
#pragma GCC diagnostic ignored "-Wunknown-warning-option"
#pragma GCC diagnostic ignored "-Wanalyzer-out-of-bounds"
#endif
#endif

static int
___cp_wctomb(char *s, wchar_t wchar, int cp_idx, mbstate_t *state)
{
    (void)state;
    if (s == NULL)
        return 0;

    if (wchar >= 0x80) {
        if (cp_idx >= 0) {
            unsigned char mb;

            if ((uwchar_t)wchar > __cp_max[cp_idx])
                return -1;

            for (mb = 0; mb < 0x80; ++mb)
                if (__cp_conv[cp_idx][mb] == (uwchar_t)wchar) {
                    *s = (char)(mb + 0x80);
                    return 1;
                }
            return -1;
        }
    }

    if (wchar >= 0x100) {
        return -1;
    }

    *s = (char)wchar;
    return 1;
}

static int
__cp_437_wctomb(char *s, wchar_t _wchar, mbstate_t *state)
{
    return ___cp_wctomb(s, _wchar, 0, state);
}

static int
__cp_720_wctomb(char *s, wchar_t _wchar, mbstate_t *state)
{
    return ___cp_wctomb(s, _wchar, 1, state);
}

static int
__cp_737_wctomb(char *s, wchar_t _wchar, mbstate_t *state)
{
    return ___cp_wctomb(s, _wchar, 2, state);
}

static int
__cp_775_wctomb(char *s, wchar_t _wchar, mbstate_t *state)
{
    return ___cp_wctomb(s, _wchar, 3, state);
}

static int
__cp_850_wctomb(char *s, wchar_t _wchar, mbstate_t *state)
{
    return ___cp_wctomb(s, _wchar, 4, state);
}

static int
__cp_852_wctomb(char *s, wchar_t _wchar, mbstate_t *state)
{
    return ___cp_wctomb(s, _wchar, 5, state);
}

static int
__cp_855_wctomb(char *s, wchar_t _wchar, mbstate_t *state)
{
    return ___cp_wctomb(s, _wchar, 6, state);
}

static int
__cp_857_wctomb(char *s, wchar_t _wchar, mbstate_t *state)
{
    return ___cp_wctomb(s, _wchar, 7, state);
}

static int
__cp_858_wctomb(char *s, wchar_t _wchar, mbstate_t *state)
{
    return ___cp_wctomb(s, _wchar, 8, state);
}

static int
__cp_862_wctomb(char *s, wchar_t _wchar, mbstate_t *state)
{
    return ___cp_wctomb(s, _wchar, 9, state);
}

static int
__cp_866_wctomb(char *s, wchar_t _wchar, mbstate_t *state)
{
    return ___cp_wctomb(s, _wchar, 10, state);
}

static int
__cp_874_wctomb(char *s, wchar_t _wchar, mbstate_t *state)
{
    return ___cp_wctomb(s, _wchar, 11, state);
}

static int
__cp_1125_wctomb(char *s, wchar_t _wchar, mbstate_t *state)
{
    return ___cp_wctomb(s, _wchar, 12, state);
}

static int
__cp_1250_wctomb(char *s, wchar_t _wchar, mbstate_t *state)
{
    return ___cp_wctomb(s, _wchar, 13, state);
}

static int
__cp_1251_wctomb(char *s, wchar_t _wchar, mbstate_t *state)
{
    return ___cp_wctomb(s, _wchar, 14, state);
}

static int
__cp_1252_wctomb(char *s, wchar_t _wchar, mbstate_t *state)
{
    return ___cp_wctomb(s, _wchar, 15, state);
}

static int
__cp_1253_wctomb(char *s, wchar_t _wchar, mbstate_t *state)
{
    return ___cp_wctomb(s, _wchar, 16, state);
}

static int
__cp_1254_wctomb(char *s, wchar_t _wchar, mbstate_t *state)
{
    return ___cp_wctomb(s, _wchar, 17, state);
}

static int
__cp_1255_wctomb(char *s, wchar_t _wchar, mbstate_t *state)
{
    return ___cp_wctomb(s, _wchar, 18, state);
}

static int
__cp_1256_wctomb(char *s, wchar_t _wchar, mbstate_t *state)
{
    return ___cp_wctomb(s, _wchar, 19, state);
}

static int
__cp_1257_wctomb(char *s, wchar_t _wchar, mbstate_t *state)
{
    return ___cp_wctomb(s, _wchar, 20, state);
}

static int
__cp_1258_wctomb(char *s, wchar_t _wchar, mbstate_t *state)
{
    return ___cp_wctomb(s, _wchar, 21, state);
}

static int
__cp_20866_wctomb(char *s, wchar_t _wchar, mbstate_t *state)
{
    return ___cp_wctomb(s, _wchar, 22, state);
}

static int
__cp_21866_wctomb(char *s, wchar_t _wchar, mbstate_t *state)
{
    return ___cp_wctomb(s, _wchar, 23, state);
}

static int
__cp_101_wctomb(char *s, wchar_t _wchar, mbstate_t *state)
{
    return ___cp_wctomb(s, _wchar, 24, state);
}

static int
__cp_102_wctomb(char *s, wchar_t _wchar, mbstate_t *state)
{
    return ___cp_wctomb(s, _wchar, 25, state);
}

static int
__cp_103_wctomb(char *s, wchar_t _wchar, mbstate_t *state)
{
    return ___cp_wctomb(s, _wchar, 26, state);
}

#endif /* __MB_EXTENDED_CHARSETS_WINDOWS */

const wctomb_p __wctomb[locale_END - locale_BASE] = {
    [locale_C - locale_BASE] = __ascii_wctomb,
    [locale_UTF_8 - locale_BASE] = __utf8_wctomb,
#ifdef __MB_EXTENDED_CHARSETS_UCS
    [locale_UCS_2 - locale_BASE] = __ucs2_wctomb,
    [locale_UCS_2LE - locale_BASE] = __ucs2le_wctomb,
    [locale_UCS_2BE - locale_BASE] = __ucs2be_wctomb,
    [locale_UCS_4 - locale_BASE] = __ucs4_wctomb,
    [locale_UCS_4LE - locale_BASE] = __ucs4le_wctomb,
    [locale_UCS_4BE - locale_BASE] = __ucs4be_wctomb,
#endif
#ifdef __MB_EXTENDED_CHARSETS_ISO
    [locale_ISO_8859_1 - locale_BASE] = __iso_8859_1_wctomb,
    [locale_ISO_8859_2 - locale_BASE] = __iso_8859_2_wctomb,
    [locale_ISO_8859_3 - locale_BASE] = __iso_8859_3_wctomb,
    [locale_ISO_8859_4 - locale_BASE] = __iso_8859_4_wctomb,
    [locale_ISO_8859_5 - locale_BASE] = __iso_8859_5_wctomb,
    [locale_ISO_8859_6 - locale_BASE] = __iso_8859_6_wctomb,
    [locale_ISO_8859_7 - locale_BASE] = __iso_8859_7_wctomb,
    [locale_ISO_8859_8 - locale_BASE] = __iso_8859_8_wctomb,
    [locale_ISO_8859_9 - locale_BASE] = __iso_8859_9_wctomb,
    [locale_ISO_8859_10 - locale_BASE] = __iso_8859_10_wctomb,
    [locale_ISO_8859_11 - locale_BASE] = __iso_8859_11_wctomb,
    [locale_ISO_8859_13 - locale_BASE] = __iso_8859_13_wctomb,
    [locale_ISO_8859_14 - locale_BASE] = __iso_8859_14_wctomb,
    [locale_ISO_8859_15 - locale_BASE] = __iso_8859_15_wctomb,
    [locale_ISO_8859_16 - locale_BASE] = __iso_8859_16_wctomb,
#endif
#ifdef __MB_EXTENDED_CHARSETS_WINDOWS
    [locale_CP437 - locale_BASE] = __cp_437_wctomb,
    [locale_CP720 - locale_BASE] = __cp_720_wctomb,
    [locale_CP737 - locale_BASE] = __cp_737_wctomb,
    [locale_CP775 - locale_BASE] = __cp_775_wctomb,
    [locale_CP850 - locale_BASE] = __cp_850_wctomb,
    [locale_CP852 - locale_BASE] = __cp_852_wctomb,
    [locale_CP855 - locale_BASE] = __cp_855_wctomb,
    [locale_CP857 - locale_BASE] = __cp_857_wctomb,
    [locale_CP858 - locale_BASE] = __cp_858_wctomb,
    [locale_CP862 - locale_BASE] = __cp_862_wctomb,
    [locale_CP866 - locale_BASE] = __cp_866_wctomb,
    [locale_CP874 - locale_BASE] = __cp_874_wctomb,
    [locale_CP1125 - locale_BASE] = __cp_1125_wctomb,
    [locale_CP1250 - locale_BASE] = __cp_1250_wctomb,
    [locale_CP1251 - locale_BASE] = __cp_1251_wctomb,
    [locale_CP1252 - locale_BASE] = __cp_1252_wctomb,
    [locale_CP1253 - locale_BASE] = __cp_1253_wctomb,
    [locale_CP1254 - locale_BASE] = __cp_1254_wctomb,
    [locale_CP1255 - locale_BASE] = __cp_1255_wctomb,
    [locale_CP1256 - locale_BASE] = __cp_1256_wctomb,
    [locale_CP1257 - locale_BASE] = __cp_1257_wctomb,
    [locale_CP1258 - locale_BASE] = __cp_1258_wctomb,
    [locale_KOI8_R - locale_BASE] = __cp_20866_wctomb,
    [locale_KOI8_U - locale_BASE] = __cp_21866_wctomb,
    [locale_GEORGIAN_PS - locale_BASE] = __cp_101_wctomb,
    [locale_PT154 - locale_BASE] = __cp_102_wctomb,
    [locale_KOI8_T - locale_BASE] = __cp_103_wctomb,
#endif
#ifdef __MB_EXTENDED_CHARSETS_JIS
    [locale_JIS - locale_BASE] = __jis_wctomb,
    [locale_EUCJP - locale_BASE] = __eucjp_wctomb,
    [locale_SJIS - locale_BASE] = __sjis_wctomb,
#endif
};

#endif /* __MB_CAPABLE */