Advertisement
Guest User

comp_bool.c

a guest
May 22nd, 2019
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.22 KB | None | 0 0
  1. int is_expr_bool(char *name){
  2.     if ( strcmp(name, "Gt")==0 || strcmp(name, "Ge")==0 || strcmp(name, "Lt")==0
  3.         || strcmp(name, "Le")==0 || strcmp(name, "Eq")==0 || strcmp(name, "Not")) return 1;
  4.  
  5.     return 0;
  6. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement