Created
May 27, 2013 19:04
-
-
Save kay/5658590 to your computer and use it in GitHub Desktop.
tag_underran and tag_overran
This file contains 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 tag_underran(memory_t * memory) { | |
return *PTR_START_TAG(memory) != VALID_START_TAG; | |
} | |
bool tag_overran(memory_t * memory) { | |
return *PTR_END_TAG(memory) != VALID_END_TAG; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment