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;
1515using ::malloc;
1616using ::quick_exit;
1717using ::rand;
18+ using ::strtod;
19+ using ::strtof;
20+ using ::strtol;
21+ using ::strtold;
22+ using ::strtoll;
23+ using ::strtoul;
24+ using ::strtoull;
1825} // namespace std
1926#endif // _GHLIBCPP_CSTDLIB
Original file line number Diff line number Diff line change @@ -26,6 +26,14 @@ long int atol(const char *str);
2626long long int atoll (const char * str );
2727double atof (const char * str );
2828
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+
2937int rand (void );
3038
3139#endif // _GHLIBCPP_STDLIB
You can’t perform that action at this time.
0 commit comments