| 270 | } |
| 271 | |
| 272 | static void stbiw__writef(stbi__write_context *s, const char *fmt, ...) |
| 273 | { |
| 274 | va_list v; |
| 275 | va_start(v, fmt); |
| 276 | stbiw__writefv(s, fmt, v); |
| 277 | va_end(v); |
| 278 | } |
| 279 | |
| 280 | static void stbiw__write3(stbi__write_context *s, unsigned char a, unsigned char b, unsigned char c) |
| 281 | { |
no test coverage detected