#ifndef WH_CH_H_dbb03e23_ #define WH_CH_H_dbb03e23_ typedef struct ch CH; typedef struct loc LOC; struct loc { int lno; int cno; int bno; } ; struct ch { int c; unsigned char flags; #define CHF_QUOTED 0x01 LOC at; } ; #endif