Lines Matching refs:obuf
57 static void print(register struct message *mp, FILE *obuf, int doign);
59 static int topputs(const char *line, FILE *obuf);
444 FILE *obuf; in type1() local
448 obuf = stdout; in type1()
450 if (obuf != stdout) { in type1()
452 npclose(obuf); in type1()
465 obuf = npopen(MORE, "w"); in type1()
466 if (obuf == NULL) { in type1()
468 obuf = stdout; in type1()
470 pipef = obuf; in type1()
482 print(mp, obuf, doign); in type1()
484 if (obuf != stdout) { in type1()
486 npclose(obuf); in type1()
519 print(register struct message *mp, FILE *obuf, int doign) in print() argument
523 fprintf(obuf, "Message %2d:\n", mp - &message[0] + 1); in print()
526 (void) msend(mp, obuf, doign ? M_IGNORE : 0, fputs); in print()
528 fprintf(obuf, "\n%s\n", gettext(binmsg)); in print()
579 topputs(const char *line, FILE *obuf) in topputs() argument
584 return (fputs(line, obuf)); in topputs()