Skip to content

Instantly share code, notes, and snippets.

@surinoel
Created July 27, 2019 09:16
Show Gist options
  • Save surinoel/3f3541d0a3ce4b20b429a335203a3531 to your computer and use it in GitHub Desktop.
Save surinoel/3f3541d0a3ce4b20b429a335203a3531 to your computer and use it in GitHub Desktop.
#include <stdio.h>
#include <string.h>
int main(void) {
char buf[] = "GET /index.html HTTP/1.1";
char *ptr;
ptr = strtok(buf, " /");
printf("%s\n", ptr);
ptr = strtok(NULL , " /");
printf("%s\n", ptr);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment