SET
};
+enum var_access {
+ V_RO,
+ V_RW,
+ V_WO
+};
+
enum ref_type {
R_FUNC,
R_ACL,
unsigned len;
const char *rname;
const char *lname;
- enum {V_RO, V_RW, V_WO} access;
+ enum var_access access;
const char *hdr;
unsigned methods;
};
void vcc_NextToken(struct tokenlist *tl);
void vcc__ErrInternal(struct tokenlist *tl, const char *func, unsigned line);
void vcc_AddToken(struct tokenlist *tl, unsigned tok, const char *b, const char *e);
-void vcc_FreeToken(struct token *t);
/* vcc_var.c */
struct var *vcc_FindVar(struct tokenlist *tl, const struct token *t, struct var *vl);