libmisc: Doxygen Enhancement Task #1

This commit is contained in:
Mathew Kallada
2012-12-21 11:13:06 -06:00
committed by Jennifer Averett
parent 72c686167d
commit f5f2676824
29 changed files with 247 additions and 81 deletions

View File

@@ -1,3 +1,10 @@
/**
* @file
*
* @brief Convert String to long double (with validation)
* @ingroup libmisc_conv_help Conversion Helpers
*/
/*
* COPYRIGHT (c) 2009.
* On-Line Applications Research Corporation (OAR).
@@ -46,7 +53,7 @@ rtems_status_code rtems_string_to_long_double (
if ( end == s )
return RTEMS_NOT_DEFINED;
if ( ( errno == ERANGE ) &&
if ( ( errno == ERANGE ) &&
(( result == 0 ) || ( result == HUGE_VALL ) || ( result == -HUGE_VALL )))
return RTEMS_INVALID_NUMBER;