/*------------------------------------------------------------------------------ Expand brace expressions within each token in a list. Each brace expression consists of zero or more components, separated by a LIST_SEPARATOR character. Each component can be a range of values or a string that may include another brace expression. Version 1.0 2014-12-16 Brian B. McGuinness ------------------------------------------------------------------------------*/ #ifndef brace_expander_h #define brace_expander_h #include "string.h" #include "string_list.h" #include "types.h" int compare_strings (char *string1, char *string2); char **expand_braces (char *token); string *increment_string (string *str, string *pattern); #endif // ! brace_expander_h