diff options
author | Daniel Jacobowitz <drow@false.org> | 2003-09-15 20:13:45 +0000 |
---|---|---|
committer | Daniel Jacobowitz <drow@false.org> | 2003-09-15 20:13:45 +0000 |
commit | fca63fe805f2cc5dc02c57003376dfafb223bbcc (patch) | |
tree | ca70eb9737807f823311cacb02464ee55a7b2d6b /include/floatformat.h | |
parent | de5227fb84e6f049212c317be32343ff86c29611 (diff) | |
download | gdb-fca63fe805f2cc5dc02c57003376dfafb223bbcc.zip gdb-fca63fe805f2cc5dc02c57003376dfafb223bbcc.tar.gz gdb-fca63fe805f2cc5dc02c57003376dfafb223bbcc.tar.bz2 |
* floatformat.h (floatformat_is_valid): Add prototype.
Diffstat (limited to 'include/floatformat.h')
-rw-r--r-- | include/floatformat.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/include/floatformat.h b/include/floatformat.h index 53ead3e..feb3260 100644 --- a/include/floatformat.h +++ b/include/floatformat.h @@ -1,5 +1,5 @@ /* IEEE floating point support declarations, for GDB, the GNU Debugger. - Copyright 1991, 1994, 1995, 1997, 2000 Free Software Foundation, Inc. + Copyright 1991, 1994, 1995, 1997, 2000, 2003 Free Software Foundation, Inc. This file is part of GDB. @@ -118,4 +118,9 @@ extern void floatformat_from_double PARAMS ((const struct floatformat *, double *, char *)); +/* Return non-zero iff the data at FROM is a valid number in format FMT. */ + +extern int +floatformat_is_valid PARAMS ((const struct floatformat *fmt, char *from)); + #endif /* defined (FLOATFORMAT_H) */ |