Prashant Rahul commented on a discussion on c-user/stringto.md: 
https://gitlab.rtems.org/rtems/docs/rtems-docs/-/merge_requests/219#note_143191

 > +/* empty string */
 > +status = rtems_string_to_double( "", &outd, NULL );
 > +assert( status == RTEMS_NOT_DEFINED );
 > +
 > +/* NULL for input string or return value  */
 > +status = rtems_string_to_double( NULL, &outd, NULL );
 > +assert( status == RTEMS_INVALID_ADDRESS );
 > +
 > +status = rtems_string_to_double( "23.5", NULL, NULL );
 > +assert( status == RTEMS_INVALID_ADDRESS );
 > +```
 > +
 > +## Functions
 > +
 > +The stringto library provides the following functions:
 > +```c

used mdformat, will make sure to do the same from now onwards

-- 
View it on GitLab: 
https://gitlab.rtems.org/rtems/docs/rtems-docs/-/merge_requests/219#note_143191
You're receiving this email because of your account on gitlab.rtems.org.


_______________________________________________
bugs mailing list
[email protected]
http://lists.rtems.org/mailman/listinfo/bugs

Reply via email to