Searched refs:input (Results 1 – 3 of 3) sorted by relevance
| /stdio-common/ |
| A D | xbug.c | 13 void ReadFile (Buffer *buffer, FILE *input); 37 ReadFile (Buffer *buffer, FILE *input) in ReadFile() argument 43 while (!feof(input) && (bytes = fread(buf, 1, BUFSIZ, input)) > 0) { in ReadFile() 53 FILE *input; in main() local 63 if (!(input = popen("/bin/cat", "r"))) in main() 66 ReadFile(&buffer, input); in main() 67 pclose(input); in main()
|
| A D | test-popen.c | 55 FILE *output, *input; in do_test() local 72 input = popen ("/bin/cat " OBJPFX "tstpopen.tmp", "r"); in do_test() 73 if (input == NULL) in do_test() 79 read_data (input); in do_test() 80 rstatus = pclose (input); in do_test()
|
| A D | tst-swprintf.c | 14 const char input[] = "\x8e\xa1g\x8e\xa2h\x8e\xa3i\x8e\xa4j"; variable 30 n = swprintf (buf, array_length (buf), fmt, input); \ in do_test() 34 fmt, (wchar_t*) input, (int) n, (int) nexp); \ in do_test() 41 fmt, (wchar_t *) input, buf, exp ); \ in do_test()
|
Completed in 4 milliseconds