Ejemplo n.º 1
0
void printHis(FILE *f, int his[totSize][5], int start, int size)
/* Print one frequency histogram. */
{
printLineOfHis(f, his, 'a', start, size);
printLineOfHis(f, his, 'c', start, size);
printLineOfHis(f, his, 'g', start, size);
printLineOfHis(f, his, 't', start, size);
fprintf(f, "\n");
}
void printHis(int his[hisSize][4])
{
printf("<P>");
printLineOfHis(his, 'a');
printLineOfHis(his, 'c');
printLineOfHis(his, 'g');
printLineOfHis(his, 't');
printf("</P>");
}