X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fformat.h;h=7b8b432eec954ecd07aafff1de4462b1297bb1bc;hb=05e356b2a3087e819ef3b5388e29c822f41502e1;hp=470c45cbf7117308702130afca56223a034098a2;hpb=a7cc8b259f0fe963aa30d4e64f7d39551ded1454;p=pspp-builds.git diff --git a/src/format.h b/src/format.h index 470c45cb..7b8b432e 100644 --- a/src/format.h +++ b/src/format.h @@ -71,6 +71,24 @@ struct fmt_spec int d; /* Number of implied decimal places. */ }; + +enum alignment + { + ALIGN_LEFT = 0, + ALIGN_RIGHT = 1, + ALIGN_CENTRE = 2 + }; + + +enum measure + { + MEASURE_NOMINAL=1, + MEASURE_ORDINAL=2, + MEASURE_SCALE=3 + }; + + + /* Descriptions of all the display formats above. */ extern struct fmt_desc formats[];