RTEMS  5.1
Functions
stringto.h File Reference

Convert String to Pointer (with validation) More...

#include <rtems.h>

Go to the source code of this file.

Functions

rtems_status_code rtems_string_to_pointer (const char *s, void **n, char **endptr)
 Convert String to Pointer (with validation). More...
 
rtems_status_code rtems_string_to_unsigned_char (const char *s, unsigned char *n, char **endptr, int base)
 Convert String to Unsigned Character (with validation). More...
 
rtems_status_code rtems_string_to_int (const char *s, int *n, char **endptr, int base)
 Convert String to Int (with validation). More...
 
rtems_status_code rtems_string_to_unsigned_int (const char *s, unsigned int *n, char **endptr, int base)
 Convert String to Unsigned Int (with validation). More...
 
rtems_status_code rtems_string_to_long (const char *s, long *n, char **endptr, int base)
 Convert String to Long (with validation). More...
 
rtems_status_code rtems_string_to_unsigned_long (const char *s, unsigned long *n, char **endptr, int base)
 Convert String to Unsigned Long (with validation). More...
 
rtems_status_code rtems_string_to_long_long (const char *s, long long *n, char **endptr, int base)
 Convert String to Long Long (with validation). More...
 
rtems_status_code rtems_string_to_unsigned_long_long (const char *s, unsigned long long *n, char **endptr, int base)
 Convert String to Unsigned Long Long (with validation). More...
 
rtems_status_code rtems_string_to_float (const char *s, float *n, char **endptr)
 Convert String to Float (with validation). More...
 
rtems_status_code rtems_string_to_double (const char *s, double *n, char **endptr)
 Convert String to Double (with validation). More...
 
rtems_status_code rtems_string_to_long_double (const char *s, long double *n, char **endptr)
 Convert String to long double (with validation). More...
 

Detailed Description

Convert String to Pointer (with validation)

This file defines the interface to a set of string conversion helpers.