| 6357 | */ |
| 6358 | |
| 6359 | void func_bin(Expression_value args[], int count, Expression_value *result) |
| 6360 | { |
| 6361 | if (count != 1) |
| 6362 | die("bin() expects 1 argument, got %d", count); |
| 6363 | |
| 6364 | convert_base_helper(args[0].to_string(), 10, 2, result); |
| 6365 | } |
| 6366 | |
| 6367 | |
| 6368 | /** |
no test coverage detected