Alternatly you could let true = 1 and false = 0. Then you don't need to include that header file and make the call something like this:
char *mytest = "type some text here...";
if (tester(mytest)) //could also use: if (tester(const char *mytest) > 0)
printf("Good to go."); // :)
