52 lines
1.4 KiB
C
52 lines
1.4 KiB
C
|
/****************************************************************
|
||
|
* *
|
||
|
* Copyright 2001, 2009 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 "stringpool.h"
|
||
|
#include "io.h"
|
||
|
#include "iosp.h"
|
||
|
#include "op.h"
|
||
|
#include "ebc_xlat.h"
|
||
|
#include "gtm_utf8.h"
|
||
|
|
||
|
GBLREF io_pair io_curr_device;
|
||
|
GBLREF io_desc *active_device;
|
||
|
GBLREF spdesc stringpool;
|
||
|
|
||
|
static size_t insize;
|
||
|
static size_t outsize;
|
||
|
|
||
|
void op_wtone(int c)
|
||
|
{
|
||
|
char temp_ch[1];
|
||
|
char *start_ptr;
|
||
|
unsigned char *temp_ch_ptr;
|
||
|
error_def(ERR_INVDLRCVAL);
|
||
|
|
||
|
active_device = io_curr_device.out;
|
||
|
|
||
|
#if defined(KEEP_zOS_EBCDIC) || defined(VMS)
|
||
|
if (DEFAULT_CODE_SET != active_device->out_code_set)
|
||
|
{
|
||
|
insize = outsize = 1;
|
||
|
temp_ch[0] = (char)c;
|
||
|
temp_ch_ptr = (unsigned char *)temp_ch;
|
||
|
start_ptr = temp_ch;
|
||
|
ICONVERT(active_device->output_conv_cd, &temp_ch_ptr, &insize, &temp_ch_ptr, &outsize);
|
||
|
c = start_ptr[0];
|
||
|
}
|
||
|
#endif
|
||
|
if (IS_UTF_CHSET(active_device->ochset) && !U_VALID_CODE(c)) /* validate code point before dev specific output */
|
||
|
rts_error(VARLSTCNT(3) ERR_INVDLRCVAL, 1, c);
|
||
|
(io_curr_device.out->disp_ptr->wtone)(c);
|
||
|
active_device = 0;
|
||
|
}
|