#include "astring.h" int strpos(char *instr, char *ccheck) { int value; value = strloc(instr,ccheck)-1; if (value==-2) value++; return value; }