58 lines
1.5 KiB
C
58 lines
1.5 KiB
C
/****************************************************************
|
|
* *
|
|
* Copyright 2001, 2011 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 "gtm_string.h"
|
|
#include "gdsroot.h"
|
|
#include "gtm_facility.h"
|
|
#include "fileinfo.h"
|
|
#include "gdsbt.h"
|
|
#include "gdsfhead.h"
|
|
#include "zwrite.h"
|
|
|
|
GBLREF gvzwrite_datablk *gvzwrite_block;
|
|
|
|
void gvzwr_arg(int t, mval *a1, mval *a2)
|
|
{
|
|
int i;
|
|
|
|
i = gvzwrite_block->subsc_count++;
|
|
/* it would be good to guard the array i < sizeof... */
|
|
if (a1)
|
|
{
|
|
MV_FORCE_DEFINED(a1);
|
|
if (MV_IS_CANONICAL(a1))
|
|
MV_FORCE_NUMD(a1);
|
|
MV_FORCE_STRD(a1);
|
|
if ((ZWRITE_VAL != t) && (0 == a1->str.len)) /* value is real - leave it alone */
|
|
a1 = NULL;
|
|
}
|
|
if (a2)
|
|
{
|
|
MV_FORCE_DEFINED(a2);
|
|
if (MV_IS_CANONICAL(a2))
|
|
MV_FORCE_NUMD(a2);
|
|
MV_FORCE_STRD(a2);
|
|
if (0 == a2->str.len) /* can never be value */
|
|
a2 = NULL;
|
|
}
|
|
((zwr_sub_lst *)gvzwrite_block->sub)->subsc_list[i].subsc_type = t;
|
|
((zwr_sub_lst *)gvzwrite_block->sub)->subsc_list[i].first = a1;
|
|
((zwr_sub_lst *)gvzwrite_block->sub)->subsc_list[i].second = a2;
|
|
if ((ZWRITE_ASTERISK != t) && (ZWRITE_ALL != t))
|
|
gvzwrite_block->mask |= 1 << i;
|
|
|
|
if (ZWRITE_VAL != t)
|
|
gvzwrite_block->fixed = FALSE;
|
|
return;
|
|
}
|