Created
July 5, 2021 23:27
-
-
Save alsamitech/8c3fd45b41e2beb4c66497f26169e8ca to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| _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