1 #pragma once 2 3 #include <c10/macros/Macros.h> 4 5 namespace torch::jit { 6 7 TORCH_API double strtod_c(const char* nptr, char** endptr); 8 TORCH_API float strtof_c(const char* nptr, char** endptr); 9 10 } // namespace torch::jit 11