MCPcopy Create free account
hub / github.com/GJDuck/e9patch / stdio_stream_write_buf

Function stdio_stream_write_buf

examples/stdlib.c:3114–3123  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3112}
3113
3114static int stdio_stream_write_buf(FILE *stream, const char *start,
3115 const char *end)
3116{
3117 if (stdio_write_buf(stream->fd, start, end) < 0)
3118 {
3119 stream->flags |= STDIO_FLAG_ERROR;
3120 return EOF;
3121 }
3122 return 0;
3123}
3124
3125static int stdio_stream_write(FILE *stream)
3126{

Callers 4

stdio_stream_writeFunction · 0.85
fputc_unlockedFunction · 0.85
fputs_unlockedFunction · 0.85
fwrite_unlockedFunction · 0.85

Calls 1

stdio_write_bufFunction · 0.85

Tested by

no test coverage detected