xref: /aosp_15_r20/external/pytorch/torch/csrc/jit/frontend/strtod.h (revision da0073e96a02ea20f0ac840b70461e3646d07c45)
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