mirror of
https://github.com/pytorch/pytorch.git
synced 2025-10-20 21:14:14 +08:00
Follows #131034 Pull Request resolved: https://github.com/pytorch/pytorch/pull/131735 Approved by: https://github.com/ezyang
11 lines
216 B
C++
11 lines
216 B
C++
#pragma once
|
|
|
|
#include <c10/macros/Macros.h>
|
|
|
|
namespace torch::jit {
|
|
|
|
TORCH_API double strtod_c(const char* nptr, char** endptr);
|
|
TORCH_API float strtof_c(const char* nptr, char** endptr);
|
|
|
|
} // namespace torch::jit
|