1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
|
#include "printhdr.h"
#include "globals.h"
/* print out header information in human-readable format */
void print_header0(skip)
int skip;
{
if(listmode) {
(void)fprintf(stderr, "name=\"%s\", ", trname);
if(skip) {
(void)fprintf(stderr, "\n");
}
}
}
/* print out header information in human-readable format */
void print_header1(skip1, skip2)
int skip1, skip2;
{
char ftype[5], fauth[5];
transname(mh.m_type, ftype, 4);
transname(mh.m_author, fauth, 4);
if(listmode) {
if(skip1) {
(void)fprintf(stderr, "\t");
}
(void)fprintf(stderr, "type=%4.4s, author=%4.4s, ", ftype, fauth);
if(skip2) {
(void)fprintf(stderr, "\n");
}
}
}
/* print out header information in human-readable format */
void print_header2(skip)
int skip;
{
if(listmode) {
if(skip) {
(void)fprintf(stderr, "\t");
}
(void)fprintf(stderr, "data=%ld, rsrc=%ld\n",
mh.m_datalen, mh.m_rsrclen);
}
}
|