static int
show_text(const char *directory, const char *file_name, const char *header)
{
int is_printing_project = strcmp(file_name, _PATH_PROJECT);
int ch, lastc = 0, fd;
FILE *fp;
struct stat sbuf1, sbuf2;
xprintf("%s", header);
while ((ch = getc(fp)) != EOF) {
if (is_printing_project == 0 && ch == '\n') break;
xputc(ch);
lastc = ch;
}