/* * List that holds all current breakpoints. The list is used for listing * breakpoints and quick deletion of same. */ typedef struct { int Line; /* Reference line number. */ char *ScopeName; /* Name of scope. */ nodep Node; /* Pointer to node on which brkpt is set. */ } BrkptItem; List BrkptList; /* List of BrkptItems */ /* * Forw function decls. */ nodep FindLine(); BrkptItem *NewBrkItem(/*line, scope, stmt*/);