![]() |
This is Unofficial EPICS BASE Doxygen Site
|
#include <ctype.h>#include <stdio.h>#include <errno.h>#include <float.h>#include "epicsMath.h"#include "epicsStdlib.h"#include "epicsString.h"#include "epicsConvert.h"
Include dependency graph for epicsStdlib.c:Go to the source code of this file.
Functions | |
| LIBCOM_API int | epicsParseLong (const char *str, long *to, int base, char **units) |
| LIBCOM_API int | epicsParseULong (const char *str, unsigned long *to, int base, char **units) |
| LIBCOM_API int | epicsParseLLong (const char *str, long long *to, int base, char **units) |
| LIBCOM_API int | epicsParseULLong (const char *str, unsigned long long *to, int base, char **units) |
| LIBCOM_API int | epicsParseDouble (const char *str, double *to, char **units) |
| LIBCOM_API int | epicsParseInt8 (const char *str, epicsInt8 *to, int base, char **units) |
| LIBCOM_API int | epicsParseUInt8 (const char *str, epicsUInt8 *to, int base, char **units) |
| LIBCOM_API int | epicsParseInt16 (const char *str, epicsInt16 *to, int base, char **units) |
| LIBCOM_API int | epicsParseUInt16 (const char *str, epicsUInt16 *to, int base, char **units) |
| LIBCOM_API int | epicsParseInt32 (const char *str, epicsInt32 *to, int base, char **units) |
| LIBCOM_API int | epicsParseUInt32 (const char *str, epicsUInt32 *to, int base, char **units) |
| LIBCOM_API int | epicsParseInt64 (const char *str, epicsInt64 *to, int base, char **units) |
| LIBCOM_API int | epicsParseUInt64 (const char *str, epicsUInt64 *to, int base, char **units) |
| LIBCOM_API int | epicsParseFloat (const char *str, float *to, char **units) |
| LIBCOM_API double | epicsStrtod (const char *str, char **endp) |
| LIBCOM_API int epicsParseDouble | ( | const char * | str, |
| double * | to, | ||
| char ** | units | ||
| ) |
Definition at line 149 of file epicsStdlib.c.
| LIBCOM_API int epicsParseFloat | ( | const char * | str, |
| float * | to, | ||
| char ** | units | ||
| ) |
Definition at line 318 of file epicsStdlib.c.
| LIBCOM_API int epicsParseInt16 | ( | const char * | str, |
| epicsInt16 * | to, | ||
| int | base, | ||
| char ** | units | ||
| ) |
Definition at line 213 of file epicsStdlib.c.
| LIBCOM_API int epicsParseInt32 | ( | const char * | str, |
| epicsInt32 * | to, | ||
| int | base, | ||
| char ** | units | ||
| ) |
Definition at line 245 of file epicsStdlib.c.
| LIBCOM_API int epicsParseInt64 | ( | const char * | str, |
| epicsInt64 * | to, | ||
| int | base, | ||
| char ** | units | ||
| ) |
Definition at line 281 of file epicsStdlib.c.
| LIBCOM_API int epicsParseInt8 | ( | const char * | str, |
| epicsInt8 * | to, | ||
| int | base, | ||
| char ** | units | ||
| ) |
Definition at line 181 of file epicsStdlib.c.
| LIBCOM_API int epicsParseLLong | ( | const char * | str, |
| long long * | to, | ||
| int | base, | ||
| char ** | units | ||
| ) |
Definition at line 87 of file epicsStdlib.c.
| LIBCOM_API int epicsParseLong | ( | const char * | str, |
| long * | to, | ||
| int | base, | ||
| char ** | units | ||
| ) |
Definition at line 25 of file epicsStdlib.c.
| LIBCOM_API int epicsParseUInt16 | ( | const char * | str, |
| epicsUInt16 * | to, | ||
| int | base, | ||
| char ** | units | ||
| ) |
Definition at line 229 of file epicsStdlib.c.
| LIBCOM_API int epicsParseUInt32 | ( | const char * | str, |
| epicsUInt32 * | to, | ||
| int | base, | ||
| char ** | units | ||
| ) |
Definition at line 263 of file epicsStdlib.c.
| LIBCOM_API int epicsParseUInt64 | ( | const char * | str, |
| epicsUInt64 * | to, | ||
| int | base, | ||
| char ** | units | ||
| ) |
Definition at line 299 of file epicsStdlib.c.
| LIBCOM_API int epicsParseUInt8 | ( | const char * | str, |
| epicsUInt8 * | to, | ||
| int | base, | ||
| char ** | units | ||
| ) |
Definition at line 197 of file epicsStdlib.c.
| LIBCOM_API int epicsParseULLong | ( | const char * | str, |
| unsigned long long * | to, | ||
| int | base, | ||
| char ** | units | ||
| ) |
Definition at line 118 of file epicsStdlib.c.
| LIBCOM_API int epicsParseULong | ( | const char * | str, |
| unsigned long * | to, | ||
| int | base, | ||
| char ** | units | ||
| ) |
Definition at line 56 of file epicsStdlib.c.
| LIBCOM_API double epicsStrtod | ( | const char * | str, |
| char ** | endp | ||
| ) |
Definition at line 346 of file epicsStdlib.c.