Searched refs:my_pipe (Results 1 - 1 of 1) sorted by relevance

/freebsd-12-stable/contrib/netbsd-tests/lib/libc/stdio/
H A Dt_popen.c77 FILE *my_pipe; local
90 if ((my_pipe = popen(command, "w")) == NULL)
93 if (fwrite(buffer, sizeof(char), BUFSIZE, my_pipe) != BUFSIZE)
96 if (pclose(my_pipe) == -1)
101 if ((my_pipe = popen(command, "r")) == NULL)
105 while ((in = fgetc(my_pipe)) != EOF)
120 if (pclose(my_pipe) == -1)

Completed in 98 milliseconds