Lines Matching defs:stream
24 FILE *stream;
33 stream = fopen("t-smstdio.1", "w");
34 SM_TEST(stream != NULL);
36 fp = sm_io_stdioopen(stream, "w");
44 ** stream should now be closed. This is a tricky way to test
48 fprintf(stream, "oops! stream is still open!\n");
49 fclose(stream);
52 stream = fopen("t-smstdio.1", "r");
53 SM_TEST(stream != NULL);
55 fp = sm_io_stdioopen(stream, "r");