Skip to content

Instantly share code, notes, and snippets.

@mackwic
Created September 9, 2012 20:15
Show Gist options
  • Save mackwic/3686982 to your computer and use it in GitHub Desktop.
Save mackwic/3686982 to your computer and use it in GitHub Desktop.
void * funct(vect, arr)
{
if vect == empty_vect()
return arr;
val = head(vect);
vect = tail(vect);
return funct(vect, arr[val]);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment