(line)
| 211 | lines.add(line) |
| 212 | return LookingForHeader |
| 213 | def InHeader(line): |
| 214 | if line.startswith('*/'): |
| 215 | return OutOfHeader |
| 216 | else: |
| 217 | return InHeader |
| 218 | def OutOfHeader(line): |
| 219 | if line.startswith('#include "f2c.h"'): |
| 220 | pass |
nothing calls this directly
no test coverage detected