Skip to content

Instantly share code, notes, and snippets.

@alsamitech
Created July 5, 2021 23:27
Show Gist options
  • Select an option

  • Save alsamitech/8c3fd45b41e2beb4c66497f26169e8ca to your computer and use it in GitHub Desktop.

Select an option

Save alsamitech/8c3fd45b41e2beb4c66497f26169e8ca to your computer and use it in GitHub Desktop.
_Bool contains_byte(char* bytes, size_t len, char contains){
for(size_t i=0;i<len;i++)
if(bytes[i]==contains)return 1;
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment