| 3989 | static_assert( sizeof(char *) <= sizeof(void *), "sizeof(char *) <= sizeof(void *)" ); |
| 3990 | |
| 3991 | void function_run_actions( FUNCTION * function, FRAME * frame, STACK * s, |
| 3992 | string * out ) |
| 3993 | { |
| 3994 | *(string * *)stack_allocate( s, sizeof( string * ) ) = out; |
| 3995 | list_free( function_run( function, frame, s ) ); |
| 3996 | stack_deallocate( s, sizeof( string * ) ); |
| 3997 | } |
| 3998 | |
| 3999 | // Result is either the filename or contents depending on: |
| 4000 | // 1. If the RESPONSE_FILE_SUB == f or not set (it's filename) |
no test coverage detected