#include "header.h" void initialize_dipthong_count(dipthong_counts count_list) { int i,j; for(i=0; i<256; i++) { for(j=0; j<256; j++) { count_list[i][j] = 0; } } }