1 2 3 4 5 6 7 8 9 10 11 12
#include "ws.h" #include "prv.h" #include "parse.h" #include "storage.h" int ws(const struct lex *l, struct prv *p) { struct ast *ast = p->ast; struct fn *fn = &ast->fns[ast->nfns - 1]; return storage(l, p, "storage section", 1, &fn->ws); }