blob: 417e75d40ea910139e912c69b0860e2a81596c92 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
# TCALC.COM -- Common block used for comunicating btw tcalc and tabvar
double nullval # Substituted for null columns in expressions
pointer tabptr # Table descriptor
int firstrow # First row to evaluate
int lastrow # Last row to evaluate
common /tcalc/ nullval, tabptr, firstrow, lastrow
|