#include "header.h" counter max_dipthong_count( dipthong_counts count_list ) { int i, j; counter max_count=0; for(i=0; i<256; i++) { for(j=0; j<256; j++) { if(count_list[i][j] > max_count) { max_count = count_list[i][j]; } } } return max_count; }