Implement wcsstr(), fix return type of wcslen()
This MR implements wcsstr()
, using a sliding window for substring comparison.
Also, the return type of wcslen()
is changed from unsigned long
to size_t
(in accordance with the spec).
This MR implements wcsstr()
, using a sliding window for substring comparison.
Also, the return type of wcslen()
is changed from unsigned long
to size_t
(in accordance with the spec).