Last active
July 5, 2021 12:10
-
-
Save clytras/0f10f74696bafc6ac42e787eaed76285 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
void MyFunc() | |
{ | |
short int one = 1, | |
two = 2, | |
three = 3, | |
myBigFatVariableName = 0, | |
anOtherBigFatVariableName = 1; | |
if ( | |
!myBigFatVariableName || | |
!anOtherBigFatVariableName | |
) | |
return FALSE; | |
return TRUE; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment