| 3261 | |
| 3262 | |
| 3263 | static void argument_compiler_init( struct argument_compiler * c ) |
| 3264 | { |
| 3265 | dynamic_array_init( c->args ); |
| 3266 | c->state = ARGUMENT_COMPILER_START; |
| 3267 | } |
| 3268 | |
| 3269 | static void argument_compiler_free( struct argument_compiler * c ) |
| 3270 | { |
no test coverage detected