...
Insert excerpt | ||||||
---|---|---|---|---|---|---|
|
Options
...
Option | Comment |
optionname | comment |
Example
...
Code Block | ||
---|---|---|
| ||
EdmiError rstat; SdaiLogical result; SdaiAggr operand1, operand2; . . . If (rstat = edmiAggrValueCompare (operand1, operand2, &result)) { /* Error in operation */ printf("\nError: %s in edmiAggrValueCompare\n", edmiGetErrorText(rstat)); goto error; } switch (result) { case sdaiTRUE: . . . /* The two aggregates are value equals */ break; case sdaiFALSE: . . . /* The two aggregates are not value equals */ break; default: . . . /* Unset elements in operan1 or operand2, or error in operation */ } . . . |
...