{ | { | ||||
if(target == nullptr) return true; | if(target == nullptr) return true; | ||||
size_t tlen = (terminator==nullptr)?0:strlen(terminator); | size_t tlen = (terminator==nullptr)?0:strlen(terminator); | ||||
return findUntil(target, strlen(target), terminator, strlen(terminator)); | |||||
return findUntil(target, strlen(target), terminator, tlen); | |||||
} | } | ||||
// reads data from the stream until the target string of the given length is found | // reads data from the stream until the target string of the given length is found |