HomeSort by: relevance | last modified time | path
    Searched defs:my_pipe (Results 1 - 1 of 1) sorted by relevancy

  /src/tests/lib/libc/stdio/
t_popen.c 77 FILE *my_pipe; local in function:ATF_TC_BODY
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 11 milliseconds