/*------------------------------------------------------------------------------ Define special symbols Version 1.0 2014-12-16 Brian B. McGuinness ------------------------------------------------------------------------------*/ #ifndef symbols_h #define symbols_h #include "types.h" const Char BRACE_BEGIN = '{'; // Begins a brace expression const Char BRACE_END = '}'; // Ends a brace expression const Char LIST_SEPARATOR = ','; // Separates components of a brace expansion const Char RANGE = '.'; // Indicates a range of values when it appears twice in succession const Char ESCAPE = '\\'; // Quotes the following char const Char STRONG_QUOTE = '\''; // Quotes everything except the escape char const Char WEAK_QUOTE = '"'; // Quotes everything except escape and variable chars #endif // ! symbols_h