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

Function fwrite

examples/stdlib.c:3588–3594  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3586}
3587
3588static size_t fwrite(const void *ptr, size_t size, size_t nmemb, FILE *stream)
3589{
3590 stdio_lock(stream, 0);
3591 size_t result = fwrite_unlocked(ptr, size, nmemb, stream);
3592 stdio_unlock(stream);
3593 return result;
3594}
3595
3596static int fgetc_unlocked(FILE *stream)
3597{

Callers 6

test_memset_2Function · 0.85
test_memcpy_2Function · 0.85
test_memcpy_3Function · 0.85
test_stdioFunction · 0.85
emitBinaryFunction · 0.85
sendCodeMethod · 0.85

Calls 1

fwrite_unlockedFunction · 0.85

Tested by 4

test_memset_2Function · 0.68
test_memcpy_2Function · 0.68
test_memcpy_3Function · 0.68
test_stdioFunction · 0.68