10 lines
114 B
C++
Raw Normal View History

#include <string.h>
int TSD(const char* foo)
{
2016-07-09 11:21:54 +02:00
if (strcmp(foo, "TEST") == 0) {
return 0;
2016-07-09 11:21:54 +02:00
}
return 1;
}