Skip to content

Commit

Permalink
Tweaks. By Ivan Krylov.
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.r-project.org/R/trunk@87216 00db46b3-68df-0310-9c12-caf00c1e9a41
  • Loading branch information
hornik committed Oct 10, 2024
1 parent 734e143 commit 70026cc
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions doc/manual/R-exts.texi
Original file line number Diff line number Diff line change
Expand Up @@ -16482,12 +16482,12 @@ longer recommended.

@apifun R_atof
@apifun R_strtod
@deftypefun void R_atof (const char* @var{str})
@deftypefunx void R_strtod (const char* @var{str}, char ** @var{end})
@deftypefun double R_atof (const char* @var{str})
@deftypefunx double R_strtod (const char* @var{str}, char ** @var{end})
Implementations of the C99/POSIX functions @code{atof} and @code{strtod}
which guarantee platform-dependent behaviour, including always using the
period as the decimal point @emph{aka} `@I{radix character}' and converting
@code{"NA"} to R's @code{NA_REAL_} .
period as the decimal point @emph{aka} `@I{radix character}' and returning
R's @code{NA_REAL_} for all unconverted strings, including @code{"NA"}.
@end deftypefun


Expand Down

0 comments on commit 70026cc

Please sign in to comment.