| 19185 | va_end(args); |
| 19186 | } |
| 19187 | NK_API void |
| 19188 | nk_labelf(struct nk_context *ctx, nk_flags flags, const char *fmt, ...) |
| 19189 | { |
| 19190 | va_list args; |
| 19191 | va_start(args, fmt); |
| 19192 | nk_labelfv(ctx, flags, fmt, args); |
| 19193 | va_end(args); |
| 19194 | } |
| 19195 | NK_API void |
| 19196 | nk_labelf_wrap(struct nk_context *ctx, const char *fmt,...) |
| 19197 | { |
no test coverage detected