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

Function fflush

examples/stdlib.c:3172–3180  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3170}
3171
3172static int fflush(FILE *stream)
3173{
3174 if (stream == NULL)
3175 panic("fflush(NULL) not supported");
3176 stdio_lock(stream, EOF);
3177 int result = fflush_unlocked(stream);
3178 stdio_unlock(stream);
3179 return result;
3180}
3181
3182static int stdio_stream_read_init(FILE *stream)
3183{

Callers 6

invokeFunction · 0.85
mainFunction · 0.85
sendMessageFooterMethod · 0.85
fcloseFunction · 0.85
entryFunction · 0.85
entryFunction · 0.85

Calls 1

fflush_unlockedFunction · 0.85

Tested by 2

invokeFunction · 0.68
mainFunction · 0.68