This is Unofficial EPICS BASE Doxygen Site
osdStrtod.h
Go to the documentation of this file.
1 /*************************************************************************\
2 * Copyright (c) 2002 The University of Saskatchewan
3 * EPICS BASE is distributed subject to a Software License Agreement found
4 * in file LICENSE that is included with this distribution.
5 \*************************************************************************/
6 
7 /*
8  * This header is included by epicsString.h and epicsStdlib.h
9  */
10 
11 #ifdef __cplusplus
12 extern "C" {
13 #endif
14 
15 /*
16  * epicsStrtod() for systems with broken strtod() routine
17  */
18 double epicsStrtod(const char *str, char **endp);
19 
20 /*
21  * VxWorks doesn't provide these routines, so for now we do
22  */
23 
24 long long int strtoll(const char *nptr, char **endptr, int base);
25 unsigned long long int strtoull(const char *nptr, char **endptr, int base);
26 
27 #ifdef __cplusplus
28 }
29 #endif
LIBCOM_API double epicsStrtod(const char *str, char **endp)
Definition: epicsStdlib.c:346
#define str(v)
long long int strtoll(const char *nptr, char **endptr, int base)
int * base
Definition: flex.c:92
unsigned long long int strtoull(const char *nptr, char **endptr, int base)