Guest User

Untitled

a guest
Jun 24th, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. typedef signed char BOOL;
  2. // BOOL is explicitly signed so @encode(BOOL) == "c" rather than "C"
  3. // even if -funsigned-char is used.
  4. #define OBJC_BOOL_DEFINED
  5.  
  6.  
  7. #define YES (BOOL)1
  8. #define NO (BOOL)0
  9.  
  10. #define YES 1
  11. #define NO 0
Add Comment
Please, Sign In to add comment