| 3162 | |
| 3163 | |
| 3164 | static void argument_compiler_init( struct argument_compiler * c ) |
| 3165 | { |
| 3166 | dynamic_array_init( c->args ); |
| 3167 | c->state = ARGUMENT_COMPILER_START; |
| 3168 | } |
| 3169 | |
| 3170 | static void argument_compiler_free( struct argument_compiler * c ) |
| 3171 | { |
no test coverage detected