| 116 | } |
| 117 | |
| 118 | int main(int unused_argc, char **unused_argv) |
| 119 | { |
| 120 | VSTRING *buf = vstring_alloc(1); |
| 121 | |
| 122 | while (vstring_fgets_nonl(buf, VSTREAM_IN)) { |
| 123 | mac_parse(vstring_str(buf), mac_parse_print, (char *) 0); |
| 124 | vstream_fflush(VSTREAM_OUT); |
| 125 | } |
| 126 | vstring_free(buf); |
| 127 | return (0); |
| 128 | } |
| 129 | |
| 130 | #endif |
nothing calls this directly
no test coverage detected
searching dependent graphs…