TSD_utils.cxx 122 B

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