aboutsummaryrefslogtreecommitdiff
path: root/pkg/tbtables/tbbadf.x
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2015-07-08 20:46:52 -0400
committerJoseph Hunkeler <jhunkeler@gmail.com>2015-07-08 20:46:52 -0400
commitfa080de7afc95aa1c19a6e6fc0e0708ced2eadc4 (patch)
treebdda434976bc09c864f2e4fa6f16ba1952b1e555 /pkg/tbtables/tbbadf.x
downloadiraf-linux-fa080de7afc95aa1c19a6e6fc0e0708ced2eadc4.tar.gz
Initial commit
Diffstat (limited to 'pkg/tbtables/tbbadf.x')
-rw-r--r--pkg/tbtables/tbbadf.x47
1 files changed, 47 insertions, 0 deletions
diff --git a/pkg/tbtables/tbbadf.x b/pkg/tbtables/tbbadf.x
new file mode 100644
index 00000000..5f341b94
--- /dev/null
+++ b/pkg/tbtables/tbbadf.x
@@ -0,0 +1,47 @@
+include <mach.h>
+
+# tbbadf -- assign default format
+# This procedure assigns a default print format if none was given or if
+# the first character is not '%'.
+# The actual arguments corresponding to colfmt and pformat may be the same.
+#
+# Phil Hodge, 12-Aug-1987 Lendata is now number of char in table.
+# Phil Hodge, 12-Oct-1987 Change defaults for double, boolean, and string.
+# Phil Hodge, 6-Mar-1989 Accept datatype < 0.
+# Phil Hodge, 30-Mar-1993 Include short datatype.
+
+procedure tbbadf (colfmt, datatype, lendata, pformat, maxchar)
+
+char colfmt[ARB] # i: the print format for the column or null
+int datatype # i: the SPP data type of the column
+int lendata # i: storage requirement in table (unit=char)
+char pformat[maxchar] # o: the print format for the column
+int maxchar # i: maximum length of the string pformat
+#--
+begin
+ if (colfmt[1] != '%') { # bad format; assign default
+ switch (datatype) {
+ case TY_REAL:
+ call strcpy ("%15.7g", pformat, maxchar)
+ case TY_DOUBLE:
+ call strcpy ("%25.16g", pformat, maxchar)
+ case TY_INT:
+ call strcpy ("%11d", pformat, maxchar)
+ case TY_BOOL:
+ call strcpy ("%6b", pformat, maxchar)
+ case TY_SHORT:
+ call strcpy ("%11d", pformat, maxchar)
+ case TY_CHAR:
+ pformat[1] = '%'
+ call sprintf (pformat[2], maxchar-1, "-%ds")
+ call pargi (lendata * SZB_CHAR)
+ default:
+ # datatype < 0 for character type
+ pformat[1] = '%'
+ call sprintf (pformat[2], maxchar-1, "-%ds")
+ call pargi (-datatype)
+ }
+ } else { # just copy it
+ call strcpy (colfmt, pformat, maxchar)
+ }
+end