Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/YatSenOS/YatSenOS-Tutorial-Volume-1
/ memset
Function
memset
lab5/src/4/src/utils/stdlib.cpp:43–49 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
41
}
42
43
void memset(void *memory, char value, int length)
44
{
45
for (int i = 0; i < length; ++i)
46
{
47
((char *)memory)[i] = value;
48
}
49
}
Callers
1
executeThread
Method · 0.50
Calls
no outgoing calls
Tested by
no test coverage detected