Go to the source code of this file.
#define strtoll _strtoi64 |
#define strtoull _strtoui64 |
LIBCOM_API double epicsStrtod |
( |
const char * |
str, |
|
|
char ** |
endp |
|
) |
| |
Definition at line 346 of file epicsStdlib.c.
348 const char *cp =
str;
352 while (isspace((
int)*cp))
357 }
else if (*cp ==
'-') {
364 return strtol(
str, endp, 16);
366 return strtoul(
str, endp, 16);
368 if (!isalpha((
int)*cp)) {
369 res = strtod(
str, endp);
380 while (*cp && (*cp++ !=
')'))
int epicsStrnCaseCmp(const char *s1, const char *s2, size_t len)