Gedare Bloom started a new discussion on c-user/stringto.md: 
https://gitlab.rtems.org/rtems/docs/rtems-docs/-/merge_requests/219#note_143187

 > +/* 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

Add a line before this or use `mdformat`

-- 
View it on GitLab: 
https://gitlab.rtems.org/rtems/docs/rtems-docs/-/merge_requests/219#note_143187
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