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

Function putchar

payloads/libpayload/libc/console.c:130–135  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

128}
129
130int putchar(unsigned int i)
131{
132 unsigned char c = (unsigned char)i;
133 console_write(&c, 1);
134 return (int)c;
135}
136
137int puts(const char *s)
138{

Callers 11

readlineFunction · 0.85
putsFunction · 0.85
PDC_beepFunction · 0.85
print_fastmapFunction · 0.85
regex_compileFunction · 0.85
conf_symFunction · 0.85
printkFunction · 0.85
print_with_pathFunction · 0.85
dump_consoleFunction · 0.85
dump_regsFunction · 0.85

Calls 1

console_writeFunction · 0.70

Tested by 1

printkFunction · 0.68