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

Function fputc

examples/stdlib.c:3476–3482  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3474}
3475
3476static int fputc(int c, FILE *stream)
3477{
3478 stdio_lock(stream, EOF);
3479 int result = fputc_unlocked(c, stream);
3480 stdio_unlock(stream);
3481 return result;
3482}
3483
3484static int fputs_unlocked(const char *s, FILE *stream)
3485{

Callers 15

initFunction · 0.85
logFunction · 0.85
test_freadFunction · 0.85
sendCodeMethod · 0.85
sendBytesMethod · 0.85
sendOptionsMessageMethod · 0.85
sendELFFileMessageMethod · 0.85
main_2Function · 0.85
sendIntegerDataFunction · 0.85
sendArgumentDataMetadataFunction · 0.85

Calls 1

fputc_unlockedFunction · 0.85

Tested by 1

test_freadFunction · 0.68