#define SIZE 100
struct Item{
  int key;
  int val;
};

struct Item * fizz(struct Item *table){
  return table;
}

int main(){
  struct Item table[SIZE];
  table = fizz(table);
}