X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fdata-in.h;h=382b412909a0ca93000e92c8653d252d22a15991;hb=1f053e35b27208cad9bec322c67ba4ef022c1dc1;hp=450e10d2edb53e4a9620e2bea110d0a0364e8065;hpb=6f972e0ef93c3a7e00fd5335ea22af2c878f4589;p=pspp-builds.git diff --git a/src/data-in.h b/src/data-in.h index 450e10d2..382b4129 100644 --- a/src/data-in.h +++ b/src/data-in.h @@ -14,19 +14,21 @@ You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software - Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA - 02111-1307, USA. */ + Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA + 02110-1301, USA. */ #if !data_in_h #define data_in_h 1 #include +#include "bool.h" #include "format.h" /* Flags. */ enum { DI_IGNORE_ERROR = 01, /* Don't report errors to the user. */ + DI_IMPLIED_DECIMALS = 02 /* Insert decimals if no '.' in input. */ }; /* Information about parsing one data field. */ @@ -42,7 +44,7 @@ struct data_in struct fmt_spec format; /* Format specification to use. */ }; -int data_in (struct data_in *); +bool data_in (struct data_in *); void data_in_finite_line (struct data_in *di, const char *line, size_t len, int fc, int lc);