struct foo {
  void *entry[40];
} __attribute__ ((aligned(32)));

int foo (struct foo *ptr, int idx, void *pointer)
{
  ptr->entry[idx] = pointer;
  return 0;
}


syntax highlighted by Code2HTML, v. 0.9.1