ref: a0d30aba763788d63e47878756cbd4e5cc6f6798
dir: /ops.h/
typedef struct Ops Ops; struct Ops { char *opname; uint op; }; typedef struct Keyword Keyword; struct Keyword { char *keyword; uint i; }; uint o_lookup(char *n); char *o_find(uint op); uint k_lookup(char *n);