Lines Matching refs:fin
1318 static void init_shell(FILE *fin, FILE *fout)
1325 rl_instream = fin;
1350 static void exit_shell(FILE *fin, FILE *fout)
1362 if (fin != stdin)
1363 fclose(fin);
1368 static int run_shell_loop(FILE *fin, FILE *fout)
1372 init_shell(fin, fout);
1384 exit_shell(fin, fout);
1390 FILE *fin = NULL, *fout = NULL;
1393 fin = fopen(argv[1], "r");
1397 return run_shell_loop(fin ? : stdin, fout ? : stdout);