Hi,
I try to implement the following in C:
My application receives a buffer that is of type BYTE* and is filled with
both ANSI strings and binary content in between. Now, the problem is, that I
want to search for specific patterns in this buffer - _lsearch does this just
perfectly well.
Now, as the buffer also 'contains' strings (of course not in that format,
but by content) I want to do both case sensitive and case insensitive
searching on that.
As the buffer might contain NULL values I cannot use any typical string
function. Any ideas how to do that in a different way?
Thanks a lot
Peter