53 lines
1.3 KiB
C
53 lines
1.3 KiB
C
/****************************************************************
|
|
* *
|
|
* Copyright 2001, 2007 Fidelity Information Services, Inc *
|
|
* *
|
|
* This source code contains the intellectual property *
|
|
* of its copyright holder(s), and is made available *
|
|
* under a license. If you do not know the terms of *
|
|
* the license, please stop and do not read further. *
|
|
* *
|
|
****************************************************************/
|
|
|
|
#include "mdef.h"
|
|
|
|
#include "io.h"
|
|
#ifdef UNICODE_SUPPORTED
|
|
#include "gtm_utf8.h"
|
|
#endif
|
|
|
|
GBLREF io_pair io_curr_device;
|
|
GBLREF boolean_t gtm_utf8_mode;
|
|
LITREF mstr chset_names[];
|
|
|
|
void iott_wtone(int v)
|
|
{
|
|
mstr temp;
|
|
char p[1];
|
|
#ifdef UNICODE_SUPPORTED
|
|
unsigned char utf_buf[GTM_MB_LEN_MAX], *up;
|
|
#endif
|
|
io_desc *iod;
|
|
UNICODE_ONLY(error_def(ERR_BADCHSET);)
|
|
|
|
if (!gtm_utf8_mode UNICODE_ONLY(|| CHSET_M == io_curr_device.out->ochset))
|
|
{
|
|
p[0] = (char)v;
|
|
temp.len = 1;
|
|
temp.addr = p;
|
|
UNICODE_ONLY(temp.char_len = 1;)
|
|
}
|
|
#ifdef UNICODE_SUPPORTED
|
|
else if (CHSET_UTF8 == io_curr_device.out->ochset)
|
|
{
|
|
up = UTF8_WCTOMB(v, utf_buf);
|
|
temp.len = INTCAST(up - utf_buf);
|
|
temp.addr = (char *)&utf_buf[0];
|
|
} else
|
|
rts_error(VARLSTCNT(4) ERR_BADCHSET, 2, chset_names[io_curr_device.out->ochset].len,
|
|
chset_names[io_curr_device.out->ochset].addr);
|
|
#endif
|
|
iott_write(&temp);
|
|
return;
|
|
}
|