MCPcopy Create free account
hub / github.com/coreboot/coreboot / puts

Function puts

payloads/libpayload/libc/console.c:137–145  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

135}
136
137int puts(const char *s)
138{
139 size_t size = strlen(s);
140
141 console_write(s, size);
142
143 putchar('\n');
144 return size + 1;
145}
146
147int havekey(void)
148{

Callers 15

gdb_output_writeFunction · 0.85
mainFunction · 0.85
octeon_ddr_initializeFunction · 0.85
limit_l2_waysFunction · 0.85
print_ahciFunction · 0.85
FseekEndFunction · 0.85
dump_fwFunction · 0.85
mainFunction · 0.85
FseekEndFunction · 0.85
mainFunction · 0.85
usageFunction · 0.85
usageFunction · 0.85

Calls 3

strlenFunction · 0.85
putcharFunction · 0.85
console_writeFunction · 0.70

Tested by 1

mainFunction · 0.68