| 1 | #include <stdio.h> |
| 2 | |
| 3 | int main(int ac, char **av) |
| 4 | { |
| 5 | while (1) { |
| 6 | int ch = fgetc(stdin); |
| 7 | if (ch == EOF && (feof(stdin) || ferror(stdin))) { |
| 8 | break; |
| 9 | } |
| 10 | fputc(ch, stdout); |
| 11 | } |
| 12 | |
| 13 | return 0; |
| 14 | } |
nothing calls this directly
no outgoing calls
no test coverage detected