| 282 | #ifndef STBI_WRITE_NO_STDIO |
| 283 | |
| 284 | static void stbi__stdio_write(void *context, void *data, int size) |
| 285 | { |
| 286 | fwrite(data,1,size,(FILE*) context); |
| 287 | } |
| 288 | |
| 289 | #if defined(_WIN32) && defined(STBIW_WINDOWS_UTF8) |
| 290 | #ifdef __cplusplus |
nothing calls this directly
no outgoing calls
no test coverage detected