initialize a callback-based context
| 117 | |
| 118 | // initialize a callback-based context |
| 119 | static void stbi__start_write_callbacks(stbi__write_context* s, stbi_write_func* c, void* context) |
| 120 | { |
| 121 | s->func = c; |
| 122 | s->context = context; |
| 123 | } |
| 124 | |
| 125 | #ifndef STBI_WRITE_NO_STDIO |
| 126 |
no outgoing calls
no test coverage detected