| 1760 | std::vector<int> undoReadChars; |
| 1761 | |
| 1762 | inline int postprocessGetc(int getcResult) { |
| 1763 | if (getcResult != EOF) |
| 1764 | return getcResult; |
| 1765 | else |
| 1766 | return EOFC; |
| 1767 | } |
| 1768 | |
| 1769 | int getc(FILE *file) { |
| 1770 | int c; |
nothing calls this directly
no outgoing calls
no test coverage detected