You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
127 B

  1. #include "tof.h"
  2. bool tof(string a)
  3. {
  4. string b = "false";
  5. if (a == b)
  6. {
  7. return false;
  8. }
  9. else
  10. {
  11. return true;
  12. }
  13. }