X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Foutput%2Ftable.h;h=829410edfd3db644930a18233f9a3a939a8413c9;hb=7fbfc32fc3c636959b0a25b3e76609f86519e84a;hp=d0958cefe3e6fcec7ccf4a192903717acb598677;hpb=43b1296aafe7582e7dbe6c2b6a8b478d7d9b0fcf;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);