MCPcopy Create free account
hub / github.com/HoShiMin/Kernel-Bridge / ceil

Function ceil

Kernel-Bridge/API/CppSupport.cpp:258–262  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

256#else
257 #pragma function(ceil)
258 _Check_return_ double __cdecl ceil(_In_ double _X)
259 {
260 int v = static_cast<int>(_X);
261 return static_cast<double>(_X > static_cast<double>(v) ? v + 1 : v);
262 }
263#endif

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected