34 lines
931 B
C
34 lines
931 B
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 "lv_val.h"
|
|
#include "mvalconv.h"
|
|
|
|
error_def(ERR_ORDER2);
|
|
|
|
void op_fno2(lv_val *src,mval *key,mval *dst,mval *direct)
|
|
{
|
|
int4 dummy_intval;
|
|
|
|
MV_FORCE_DEFINED(key);
|
|
MV_FORCE_NUM(direct);
|
|
if (!MV_IS_TRUEINT(direct, &dummy_intval) || (direct->m[1] != (1 * MV_BIAS) && direct->m[1] != (-1 * MV_BIAS)))
|
|
rts_error(VARLSTCNT(1) ERR_ORDER2);
|
|
else
|
|
{ if (direct->m[1] == 1*MV_BIAS)
|
|
op_fnorder(src,key,dst);
|
|
else
|
|
op_fnzprevious(src,key,dst);
|
|
}
|
|
}
|