initialize a callback-based context
| 205 | |
| 206 | // initialize a callback-based context |
| 207 | static void stbi__start_write_callbacks(stbi__write_context *s, stbi_write_func *c, void *context) |
| 208 | { |
| 209 | s->func = c; |
| 210 | s->context = context; |
| 211 | } |
| 212 | |
| 213 | #ifndef STBI_WRITE_NO_STDIO |
| 214 |
no outgoing calls
no test coverage detected