From f5c4671bfbad96bf346bd7e9a21fc4317b4959df Mon Sep 17 00:00:00 2001 From: Indrajith K L Date: Sat, 3 Dec 2022 17:00:20 +0530 Subject: Adds most of the tools --- v_windows/v/vlib/math/floor.c.v | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 v_windows/v/vlib/math/floor.c.v (limited to 'v_windows/v/vlib/math/floor.c.v') diff --git a/v_windows/v/vlib/math/floor.c.v b/v_windows/v/vlib/math/floor.c.v new file mode 100644 index 0000000..1dc9330 --- /dev/null +++ b/v_windows/v/vlib/math/floor.c.v @@ -0,0 +1,34 @@ +module math + +fn C.ceil(x f64) f64 + +fn C.floor(x f64) f64 + +fn C.round(x f64) f64 + +fn C.trunc(x f64) f64 + +// ceil returns the nearest f64 greater or equal to the provided value. +[inline] +pub fn ceil(x f64) f64 { + return C.ceil(x) +} + +// floor returns the nearest f64 lower or equal of the provided value. +[inline] +pub fn floor(x f64) f64 { + return C.floor(x) +} + +// round returns the integer nearest to the provided value. +[inline] +pub fn round(x f64) f64 { + return C.round(x) +} + +// trunc rounds a toward zero, returning the nearest integral value that is not +// larger in magnitude than a. +[inline] +pub fn trunc(x f64) f64 { + return C.trunc(x) +} -- cgit v1.2.3