| 3434 | |
| 3435 | |
| 3436 | static void argument_compiler_init( struct argument_compiler * c ) |
| 3437 | { |
| 3438 | dynamic_array_init( c->args ); |
| 3439 | c->state = ARGUMENT_COMPILER_START; |
| 3440 | } |
| 3441 | |
| 3442 | static void argument_compiler_free( struct argument_compiler * c ) |
| 3443 | { |
no test coverage detected