// // type.h // ZE-Standard-Libraries // // Created by 胡一兵 on 2018/7/23. // Copyright © 2018年 ZE. All rights reserved. // #ifndef type_h #define type_h #define VOID 0 #define INT 1 #define DOUBLE 2 #define STRING 3 #define POINTER 4 #define LIST 5 #define STACK 6 #define TREE 7 #define LIST_NODE 8 #define TREE_NODE 9 #define STACK_NODE 10 #define TYPE_LEN 5 #define DEEPC 1 #define DEEPB 2 #define DEEPA 3 #define DEEPC_LEN 4 #define DEEPB_LEN 8 #define DEEPA_LEN 32 #define DATA_BIT 5 #endif /* type_h */