TransformToTree.h 599 B

1234567891011121314
  1. #ifndef __TRANSFORM_TO_TREE_H__
  2. #define __TRANSFORM_TO_TREE_H__
  3. #include "private/TreeExpressionHeader.h"
  4. #include "private/VectorCh.h"
  5. void tr_CreateTransformedTree(tr_vector* input, tr_header* head);
  6. void tr_OutputNormalFormat(tr_header* head);
  7. void tr_PrintTreeFormat(tr_header* head);
  8. tr_vector* tr_CollectNewVector(); // Collect new vector of char from stdin
  9. void tr_PrintVector(tr_vector* v);
  10. void tr_ClearVector(tr_vector* v, unsigned int type); //type = 0 => clear only string in heap || type = 1 => destroy vector
  11. #endif