| 1377 | #endif |
| 1378 | |
| 1379 | static JSValue js_std_sprintf(JSContext *ctx, JSValueConst this_val, |
| 1380 | int argc, JSValueConst *argv) |
| 1381 | { |
| 1382 | return js_printf_internal(ctx, argc, argv, NULL); |
| 1383 | } |
| 1384 | |
| 1385 | static JSValue js_std_printf(JSContext *ctx, JSValueConst this_val, |
| 1386 | int argc, JSValueConst *argv) |
nothing calls this directly
no test coverage detected