diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2015-07-08 20:46:52 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2015-07-08 20:46:52 -0400 |
commit | fa080de7afc95aa1c19a6e6fc0e0708ced2eadc4 (patch) | |
tree | bdda434976bc09c864f2e4fa6f16ba1952b1e555 /pkg/tbtables/tbxncn.x | |
download | iraf-linux-fa080de7afc95aa1c19a6e6fc0e0708ced2eadc4.tar.gz |
Initial commit
Diffstat (limited to 'pkg/tbtables/tbxncn.x')
-rw-r--r-- | pkg/tbtables/tbxncn.x | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/pkg/tbtables/tbxncn.x b/pkg/tbtables/tbxncn.x new file mode 100644 index 00000000..69a650f7 --- /dev/null +++ b/pkg/tbtables/tbxncn.x @@ -0,0 +1,31 @@ +include "tbtables.h" + +# tbxncn -- new column null +# Write INDEF values for each new column in each existing row of a table. +# This is called after defining new columns in an open table, but only if +# it contains some rows and the record length did not have to be increased. +# +# Phil Hodge, 30-Mar-1993 indef_rec is now TY_CHAR rather than TY_REAL. + +procedure tbxncn (tp, old_colused, indef_rec) + +pointer tp # i: Pointer to table descriptor +int old_colused # i: Previous value of TB_COLUSED (unit=SZ_CHAR) +char indef_rec[ARB] # i: INDEF record buffer +#-- +long locn # Location (chars) for writing in table +int start # Location in INDEF record of values to write +int k # Loop index +int num_chars # Number of chars to write as INDEF + +begin + num_chars = TB_COLUSED(tp) - old_colused + + start = old_colused + 1 # unit = SZ_CHAR + locn = TB_BOD(tp) + old_colused # incremented in loop + do k = 1, TB_NROWS(tp) { + call seek (TB_FILE(tp), locn) + call write (TB_FILE(tp), indef_rec[start], num_chars) + locn = locn + TB_ROWLEN(tp) + } +end |