DvG_StreamCommand
|
#include "DvG_StreamCommand.h"
Functions | |
float | parseFloatInString (const char *str_in, uint16_t pos) |
Safely parse a float value in C-string str_in from of position pos . More... | |
bool | parseBoolInString (const char *str_in, uint16_t pos) |
Safely parse a boolean value in C-string str_in from of position pos . More... | |
int | parseIntInString (const char *str_in, uint16_t pos) |
Safely parse an integer value in C-string str_in from of position pos . More... | |
float parseFloatInString | ( | const char * | str_in, |
uint16_t | pos = 0 |
||
) |
Safely parse a float value in C-string str_in
from of position pos
.
bool parseBoolInString | ( | const char * | str_in, |
uint16_t | pos = 0 |
||
) |
Safely parse a boolean value in C-string str_in
from of position pos
.
str_in
is empty or pos
is past the str_in
length.int parseIntInString | ( | const char * | str_in, |
uint16_t | pos = 0 |
||
) |
Safely parse an integer value in C-string str_in
from of position pos
.