MCPcopy Index your code
hub / github.com/GJDuck/e9patch / fputs

Function fputs

examples/stdlib.c:3513–3519  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3511}
3512
3513static int fputs(const char *s, FILE *stream)
3514{
3515 stdio_lock(stream, EOF);
3516 int result = fputs_unlocked(s, stream);
3517 stdio_unlock(stream);
3518 return result;
3519}
3520
3521static int putc(int c, FILE *stream)
3522{

Callers 15

mainFunction · 0.85
writeFunction · 0.85
logFunction · 0.85
test_stdioFunction · 0.85
test_stringFunction · 0.85
logSetColorFunction · 0.85
logImplFunction · 0.85
sendStringMethod · 0.85
main_2Function · 0.85
sendOperandDataMetadataFunction · 0.85

Calls 1

fputs_unlockedFunction · 0.85

Tested by 3

mainFunction · 0.68
test_stdioFunction · 0.68
test_stringFunction · 0.68