Skip to content

Instantly share code, notes, and snippets.

@PythonJedi
Created April 26, 2016 03:09
Show Gist options
  • Save PythonJedi/6c7bed6c56d1a36a6074c04497f6b47d to your computer and use it in GitHub Desktop.
Save PythonJedi/6c7bed6c56d1a36a6074c04497f6b47d to your computer and use it in GitHub Desktop.
while (*node != NULL) {
if (/* match condition*/)
node = &((*node)->child);
else
node = &((*node)->next);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment