I am iterating through a list and through a vector. Both are filled with wstring s.
I need to compare the two strings they are pointing at and find out if "wstring1" exists in another "wstring2".
n and k are the two iterators.
When I try:
wcscmp(*n,*k);
it fails because a const wchar t is ecpected, if I understand the error message right...
How can I check if *n = "Hello you little fellow" contains *k="little" ?
Case does not matter.
PS: I do not want to use the BOOST lib.