24 lines
774 B
C
24 lines
774 B
C
/****************************************************************
|
|
* *
|
|
* Copyright 2001, 2006 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. *
|
|
* *
|
|
****************************************************************/
|
|
|
|
#ifndef LOGICAL_TRUTH_VALUE_H_INCLUDED
|
|
#define LOGICAL_TRUTH_VALUE_H_INCLUDED
|
|
|
|
#define LOGICAL_TRUE "TRUE"
|
|
#define LOGICAL_YES "YES"
|
|
|
|
#define LOGICAL_FALSE "FALSE"
|
|
#define LOGICAL_NO "NO"
|
|
|
|
boolean_t logical_truth_value(mstr *logical, boolean_t negate, boolean_t *is_defined);
|
|
|
|
#endif /* LOGICAL_TRUTH_VALUE_H_INCLUDED */
|