/
githubmirror
/
julia
Обзор
Документация
Войти
/
githubmirror
/
julia
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/support/strtod.h
17 строк
329 B
Tristan Konolige
Add JL_ namespace to all header include guards (#22904)
22 июл 2017, 05:44
22 июл 2017, 05:44
a627e51
Код
Авторство
О чём код?
// This file is a part of Julia. License is MIT: https://julialang.org/license #ifndef JL_STRTOD_H #define JL_STRTOD_H #ifdef __cplusplus extern "C" { #endif JL_DLLEXPORT double jl_strtod_c(const char *nptr, char **endptr); JL_DLLEXPORT float jl_strtof_c(const char *nptr, char **endptr); #ifdef __cplusplus } #endif #endif