Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mruby
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
mruby
Commits
e7db1583
Unverified
Commit
e7db1583
authored
May 16, 2021
by
Yukihiro "Matz" Matsumoto
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
numeric.h: reduce conditional compilation branch on `MRB_NO_FLOAT`.
parent
361b380e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
9 deletions
+7
-9
include/mruby/numeric.h
include/mruby/numeric.h
+7
-9
No files found.
include/mruby/numeric.h
View file @
e7db1583
...
...
@@ -30,16 +30,7 @@ MRB_BEGIN_DECL
#endif
#endif
#ifndef MRB_NO_FLOAT
MRB_API
mrb_value
mrb_flo_to_fixnum
(
mrb_state
*
mrb
,
mrb_value
val
);
#endif
MRB_API
mrb_value
mrb_fixnum_to_str
(
mrb_state
*
mrb
,
mrb_value
x
,
mrb_int
base
);
/* ArgumentError if format string doesn't match /%(\.[0-9]+)?[aAeEfFgG]/ */
#ifndef MRB_NO_FLOAT
MRB_API
mrb_value
mrb_float_to_str
(
mrb_state
*
mrb
,
mrb_value
x
,
const
char
*
fmt
);
MRB_API
int
mrb_float_to_cstr
(
mrb_state
*
mrb
,
char
*
buf
,
size_t
len
,
const
char
*
fmt
,
mrb_float
f
);
MRB_API
mrb_float
mrb_to_flo
(
mrb_state
*
mrb
,
mrb_value
x
);
#endif
MRB_API
mrb_value
mrb_num_plus
(
mrb_state
*
mrb
,
mrb_value
x
,
mrb_value
y
);
MRB_API
mrb_value
mrb_num_minus
(
mrb_state
*
mrb
,
mrb_value
x
,
mrb_value
y
);
...
...
@@ -162,6 +153,13 @@ mrb_int_mul_overflow(mrb_int a, mrb_int b, mrb_int *c)
# define MRB_FLT_MAX DBL_MAX
# define MRB_FLT_MAX_10_EXP DBL_MAX_10_EXP
# endif
/* MRB_USE_FLOAT32 */
MRB_API
mrb_value
mrb_flo_to_fixnum
(
mrb_state
*
mrb
,
mrb_value
val
);
MRB_API
mrb_value
mrb_float_to_str
(
mrb_state
*
mrb
,
mrb_value
x
,
const
char
*
fmt
);
/* ArgumentError if format string doesn't match /%(\.[0-9]+)?[aAeEfFgG]/ */
MRB_API
int
mrb_float_to_cstr
(
mrb_state
*
mrb
,
char
*
buf
,
size_t
len
,
const
char
*
fmt
,
mrb_float
f
);
MRB_API
mrb_float
mrb_to_flo
(
mrb_state
*
mrb
,
mrb_value
x
);
#endif
/* MRB_NO_FLOAT */
MRB_END_DECL
...
...
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