File tree Expand file tree Collapse file tree 2 files changed +15
-0
lines changed
cpp/common/test/includes/standard-library Expand file tree Collapse file tree 2 files changed +15
-0
lines changed Original file line number Diff line number Diff line change @@ -15,5 +15,12 @@ using ::free;
15
15
using ::malloc;
16
16
using ::quick_exit;
17
17
using ::rand;
18
+ using ::strtod;
19
+ using ::strtof;
20
+ using ::strtol;
21
+ using ::strtold;
22
+ using ::strtoll;
23
+ using ::strtoul;
24
+ using ::strtoull;
18
25
} // namespace std
19
26
#endif // _GHLIBCPP_CSTDLIB
Original file line number Diff line number Diff line change @@ -26,6 +26,14 @@ long int atol(const char *str);
26
26
long long int atoll (const char * str );
27
27
double atof (const char * str );
28
28
29
+ long int strtol (const char * str , char * * endptr , int base );
30
+ long long int strtoll (const char * str , char * * endptr , int base );
31
+ unsigned long int strtoul (const char * str , char * * endptr , int base );
32
+ unsigned long long int strtoull (const char * str , char * * endptr , int base );
33
+ double strtod (const char * str , char * * endptr );
34
+ float strtof (const char * str , char * * endptr );
35
+ long double strtold (const char * str , char * * endptr );
36
+
29
37
int rand (void );
30
38
31
39
#endif // _GHLIBCPP_STDLIB
You can’t perform that action at this time.
0 commit comments