X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fdata%2Fdata-in.h;h=d66b1c644903cd9795821c03e2ad71da453eea71;hb=09f992ebd556113e28cdf0829459121e3d2ec865;hp=198128863bebec7e502d3e308600965905d50320;hpb=d0371553a98cd169353bf6d211e375e5ffc3a3bd;p=pspp diff --git a/src/data/data-in.h b/src/data/data-in.h index 198128863b..d66b1c6449 100644 --- a/src/data/data-in.h +++ b/src/data/data-in.h @@ -14,16 +14,15 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . */ -#if !data_in_h -#define data_in_h 1 +#ifndef DATA_DATA_IN_H +#define DATA_DATA_IN_H 1 -#include #include +#include #include #include #include #include -#include "format.h" enum integer_format data_in_get_integer_format (void); void data_in_set_integer_format (enum integer_format); @@ -31,8 +30,9 @@ void data_in_set_integer_format (enum integer_format); enum float_format data_in_get_float_format (void); void data_in_set_float_format (enum float_format); +union value; bool data_in (struct substring input, enum legacy_encoding, enum fmt_type, int implied_decimals, int first_column, union value *output, int width); -#endif /* data-in.h */ +#endif /* data/data-in.h */