Update copyright notices with scripts/update-copyrights
[glibc.git] / manual / examples / popen.c
bloba53c9fd53537a852803c93ba459689b15c184672
1 /* Pipe to a Subprocess
2 Copyright (C) 1991-2014 Free Software Foundation, Inc.
4 This program is free software; you can redistribute it and/or
5 modify it under the terms of the GNU General Public License
6 as published by the Free Software Foundation; either version 2
7 of the License, or (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, if not, see <http://www.gnu.org/licenses/>.
18 #include <stdio.h>
19 #include <stdlib.h>
21 void
22 write_data (FILE * stream)
24 int i;
25 for (i = 0; i < 100; i++)
26 fprintf (stream, "%d\n", i);
27 if (ferror (stream))
29 fprintf (stderr, "Output to stream failed.\n");
30 exit (EXIT_FAILURE);
34 /*@group*/
35 int
36 main (void)
38 FILE *output;
40 output = popen ("more", "w");
41 if (!output)
43 fprintf (stderr,
44 "incorrect parameters or too many files.\n");
45 return EXIT_FAILURE;
47 write_data (output);
48 if (pclose (output) != 0)
50 fprintf (stderr,
51 "Could not run more or other error.\n");
53 return EXIT_SUCCESS;
55 /*@end group*/