MCPcopy 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
170char *strtok(char *str, const char *delim)
171{
172 static char *strtok_ptr;
173
174 return strtok_r(str, delim, &strtok_ptr);
175}
176
177long atol(const char *str)
178{

Callers 5

vga_write_textFunction · 0.50
new_layoutFunction · 0.50
decode_mmap_argFunction · 0.50
mainFunction · 0.50
parse_regionFunction · 0.50

Calls 1

strtok_rFunction · 0.70

Tested by

no test coverage detected