Adopt use of gnulib for portability.
[pspp-builds.git] / src / data-in.h
index c520920522838d4e3b82f90521251ff675eefd75..9499f78cb0b669994dd0aba78744d9e57f60a33e 100644 (file)
 
    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 <stddef.h>
+#include <stdbool.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. */
@@ -41,19 +44,9 @@ 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);
 
-#if __GNUC__ >= 2
-extern inline void
-data_in_finite_line (struct data_in *di, const char *line, size_t len,
-                    int fc, int lc)
-{
-  di->s = line + ((size_t) fc <= len ? fc - 1 : len);
-  di->e = line + ((size_t) lc <= len ? lc : len);
-}
-#endif /* GNU C */
-
 #endif /* data-in.h */