Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/coreboot/coreboot
/ strtok
Function
strtok
src/lib/string.c:170–175 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
168
}
169
170
char *strtok(char *str, const char *delim)
171
{
172
static char *strtok_ptr;
173
174
return strtok_r(str, delim, &strtok_ptr);
175
}
176
177
long atol(const char *str)
178
{
Callers
5
vga_write_text
Function · 0.50
new_layout
Function · 0.50
decode_mmap_arg
Function · 0.50
main
Function · 0.50
parse_region
Function · 0.50
Calls
1
strtok_r
Function · 0.70
Tested by
no test coverage detected