| 3221 | } |
| 3222 | |
| 3223 | static void stdio_stream_free(FILE *stream) |
| 3224 | { |
| 3225 | if (stream->buf != NULL && (stream->flags & STDIO_FLAG_OWN_BUF)) |
| 3226 | free(stream->buf); |
| 3227 | free(stream); |
| 3228 | } |
| 3229 | |
| 3230 | static int stdio_parse_mode(const char *mode) |
| 3231 | { |