TSD_utils.cxx 114 B

123456789
  1. #include <string.h>
  2. int TSD(const char* foo)
  3. {
  4. if (strcmp(foo, "TEST") == 0) {
  5. return 0;
  6. }
  7. return 1;
  8. }