#include <stdio.h>
#include "errors2.h"

int dump_data(struct phone_number *table) 
{
    int i;

    printf("Phone Numbers/Números de teléfono\n");
    for (i = 0; i < SIZE; i++) 
    {
      printf("+%d %d\n", table[i].country_code, table[i].number);
    }

}
