MCPcopy Create free account
hub / github.com/LemonOSProject/LemonOS / floor

Function floor

Kernel/src/math.cpp:9–12  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

7}
8
9int floor(int num) {
10 int x = (int)num;
11 return num < x ? x - 1 : x;
12}
13
14int abs(int num) {
15 return num < 0 ? -num : num;

Callers 8

LoadImageFunction · 0.85
LoadBitmapImageFunction · 0.85
DrawBitmapImageFunction · 0.85
OnMouseDownMethod · 0.85
OnDoubleClickMethod · 0.85
PaintMethod · 0.85
PaintMethod · 0.85
DrawBitmapImageFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected