Skip to content

Instantly share code, notes, and snippets.

@Mause
Created October 2, 2014 10:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Mause/b59e2fc914e4bfa7f2dc to your computer and use it in GitHub Desktop.
Save Mause/b59e2fc914e4bfa7f2dc to your computer and use it in GitHub Desktop.
#include <string.h>
bool startswith(char* poss, char* chunk) {
char* result = strstr(poss, chunk);
return result != NULL && result == poss;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment