| 1208 | } |
| 1209 | |
| 1210 | int avio_printf(AVIOContext *s, const char *fmt, ...) |
| 1211 | { |
| 1212 | va_list ap; |
| 1213 | int ret; |
| 1214 | |
| 1215 | va_start(ap, fmt); |
| 1216 | ret = avio_vprintf(s, fmt, ap); |
| 1217 | va_end(ap); |
| 1218 | |
| 1219 | return ret; |
| 1220 | } |
| 1221 | |
| 1222 | void avio_print_string_array(AVIOContext *s, const char *const strings[]) |
| 1223 | { |
no test coverage detected