| 1913 | } |
| 1914 | |
| 1915 | static VAR_PARSE_ACTIONS * parse_actions( char const * string ) |
| 1916 | { |
| 1917 | VAR_PARSE_ACTIONS * const result = var_parse_actions_new(); |
| 1918 | parse_var_string( string, string + strlen( string ), result->elems ); |
| 1919 | return result; |
| 1920 | } |
| 1921 | |
| 1922 | /* |
| 1923 | * Checks whether the string a *s_ starts with a variable expansion "$(". |
no test coverage detected