| 1964 | } |
| 1965 | |
| 1966 | static VAR_PARSE_ACTIONS * parse_actions( char const * string ) |
| 1967 | { |
| 1968 | VAR_PARSE_ACTIONS * const result = var_parse_actions_new(); |
| 1969 | parse_var_string( string, string + strlen( string ), result->elems ); |
| 1970 | return result; |
| 1971 | } |
| 1972 | |
| 1973 | /* |
| 1974 | * Checks whether the string a *s_ starts with a variable expansion "$(". |
no test coverage detected