Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ecl
ecl
Commits
9a862c61
Commit
9a862c61
authored
Aug 07, 2017
by
Marius Gerbershagen
Browse files
add new make_float_unchecked functions to external.h
parent
de205bb1
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/h/external.h
View file @
9a862c61
...
...
@@ -1109,6 +1109,8 @@ extern ECL_API cl_object ecl_make_long_long(ecl_long_long_t i);
extern
ECL_API
cl_object
ecl_make_ratio
(
cl_object
num
,
cl_object
den
);
extern
ECL_API
cl_object
ecl_make_single_float
(
float
f
);
extern
ECL_API
cl_object
ecl_make_double_float
(
double
f
);
extern
ECL_API
cl_object
ecl_make_single_float_unchecked
(
float
f
);
extern
ECL_API
cl_object
ecl_make_double_float_unchecked
(
double
f
);
extern
ECL_API
cl_object
ecl_make_complex
(
cl_object
r
,
cl_object
i
);
extern
ECL_API
cl_object
cl_rational
(
cl_object
x
);
#define cl_rationalize cl_rational
...
...
@@ -1117,6 +1119,7 @@ extern ECL_API double ecl_to_double(cl_object x);
#ifdef ECL_LONG_FLOAT
extern
ECL_API
long
double
ecl_to_long_double
(
cl_object
x
);
extern
ECL_API
cl_object
ecl_make_long_float
(
long
double
f
);
extern
ECL_API
cl_object
ecl_make_long_float_unchecked
(
long
double
f
);
#endif
#ifdef ECL_IEEE_FP
extern
ECL_API
cl_object
si_nan
();
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment