Skip to content

Instantly share code, notes, and snippets.

@cwage
Created June 22, 2013 19:35
Show Gist options
  • Save cwage/5842295 to your computer and use it in GitHub Desktop.
Save cwage/5842295 to your computer and use it in GitHub Desktop.
int i;
int index;
char base64[64] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
char *tmp;
for (i = 0; i < source.length; i++)
{
tmp = strchr(base64, source.text[i]);
printf("%i\n", tmp);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment