X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Foutput%2Ftable.h;h=829410edfd3db644930a18233f9a3a939a8413c9;hb=da299bd9871b178336a440c6ac53aebc3cea672e;hp=d0958cefe3e6fcec7ccf4a192903717acb598677;hpb=23fe9f40872f54400ce10d87f349c8d317c21274;p=pspp-builds.git diff --git a/src/output/table.h b/src/output/table.h index d0958cef..829410ed 100644 --- a/src/output/table.h +++ b/src/output/table.h @@ -155,8 +155,13 @@ struct fmt_spec; union value; void tab_value (struct tab_table *, int c, int r, unsigned char opt, const union value *, const struct fmt_spec *); -void tab_float (struct tab_table *, int c, int r, unsigned char opt, + +void tab_fixed (struct tab_table *, int c, int r, unsigned char opt, double v, int w, int d); + +void tab_double (struct tab_table *, int c, int r, unsigned char opt, + double v, const struct fmt_spec *); + void tab_text (struct tab_table *, int c, int r, unsigned opt, const char *, ...) PRINTF_FORMAT (5, 6);