Skip to content

Instantly share code, notes, and snippets.

@alsamitech
Created August 27, 2021 20:52
Show Gist options
  • Save alsamitech/058344d3e439c358a35813f674468314 to your computer and use it in GitHub Desktop.
Save alsamitech/058344d3e439c358a35813f674468314 to your computer and use it in GitHub Desktop.
the fifth iteration of starts_with
_Bool starts_with(const char* restrict str, const char* restrict sw){
while(*sw)
if(*sw++!=*str++)return 0;
return 1;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment