Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
9
int floor(int num) {
10
int x = (int)num;
11
return num < x ? x - 1 : x;
12
}
13
14
int abs(int num) {
15
return num < 0 ? -num : num;
Callers
8
LoadImage
Function · 0.85
LoadBitmapImage
Function · 0.85
DrawBitmapImage
Function · 0.85
OnMouseDown
Method · 0.85
OnDoubleClick
Method · 0.85
Paint
Method · 0.85
Paint
Method · 0.85
DrawBitmapImage
Function · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected