Guest User

Untitled

a guest
Dec 15th, 2017
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.10 KB | None | 0 0
  1. #ifndef STDBOOL_H
  2. #define STDBOOL_H
  3.  
  4. typedef int bool;
  5. #define true 1
  6. #define false 0
  7.  
  8. #endif // STDBOOL_H
Add Comment
Please, Sign In to add comment