This commit is contained in:
Shengliang Guan 2020-08-25 16:24:15 +08:00
parent 9f3ccbb26f
commit d50a9d153b
2 changed files with 14 additions and 13 deletions

View File

@ -33,6 +33,7 @@ enum {
/* label stack */
typedef struct {
char top; /* number of labels */
int16_t pos[MAX_NUM_LABLES]; /* the position of the label */
char label[MAX_NUM_LABLES][MAX_LABEL_LEN]; /* name of the label */
} SLabel;