ref: 7d3fb4d665372fe975403ff80f32500204454d3b
dir: /os/pc64/forth.head.h/
/* * Forth dictionary */ enum { Header, IHeader, /* Immediate dictionary definition */ Absolute, FromH0, FromV0, Chars, }; typedef struct Hdr Hdr; struct Hdr { int len; char name[64]; void *cfa; }; typedef struct Fentry Fentry; struct Fentry { int type; union { Hdr hdr; intptr p; char str[128]; }; char src[128]; };