diff options
Diffstat (limited to 'include/stdlib.h')
-rw-r--r-- | include/stdlib.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/include/stdlib.h b/include/stdlib.h index 4aa95f2..1244060 100644 --- a/include/stdlib.h +++ b/include/stdlib.h @@ -134,6 +134,21 @@ char* relpath(const char*, const char*) /** + * Convert a string to a floating-point value, + * without checking for errors. + * + * Note that, the behaviour is unspecified + * if the string contains anything else than + * digits, either a leading '-' (hyphen) + * or a leading plus, and at most one '.'. + * + * @param string The string to convert. + * @return The number encoded by the string. + */ +double atof(const char*) + __GCC_ONLY(__attribute__((warn_unused_result, nonnull, pure))); + +/** * Convert a string to an integer, * without checking for errors. * |