Skip to content

Instantly share code, notes, and snippets.

@DexterHaslem
Created January 7, 2015 19:20
Show Gist options
  • Save DexterHaslem/2f4f21d84caecf05421e to your computer and use it in GitHub Desktop.
Save DexterHaslem/2f4f21d84caecf05421e to your computer and use it in GitHub Desktop.
#include <stdio.h>
#include <string.h>
int main()
{
char *token;
char *line = "trivial example";
char *search = " ";
token = strtok(line, search);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment