blob: a2b2d9e565bffa09f46df0fa7d62bf2ea133c866 [file] [log] [blame]
/*
* DIS Data Management: getFloat
*
* This header file contains the return codes for the
* getInt routine. The routine reads a space-delimited integer from the
* input FILE stream, but does not cross an end-of-line indicator as the
* default system routines do.
*
* Revision History:
*
* Date Name Revision
* ------- --------------- ------------------------------
* 24May99 Matthew Rivas Created
*
* Copyright 1999, Atlantic Aerospace Electronics Corp.
*/
#ifndef DIS_GET_FLOAT_H
#define DIS_GET_FLOAT_H
#include <stdio.h> /* for FILE definition */
#include "dataManagement.h" /* for primitive type definitions */
/*
* Return Codes
*/
#define GET_FLOAT_SUCCESS 0
#define GET_FLOAT_EOI 1
#define GET_FLOAT_RANGE_EXCEEDED 2
#define GET_FLOAT_BAD_CONVERSION 3
/*
* Function Prototype
*/
extern Int getFloat( FILE *file, Float *value );
#endif /* DIS_GET_FLOAT_H */