Defect Report #228
Submitter: Bill Plauger (US)
Submission Date: 10-April-2000
Reference Document: NA
Version: 1.1
Date: 2000/04/18 02:48:44
Subject:wmemcmp declaration in Annex B.
Summary
wmemcmp declaration in Annex B should not have restrict in the
for the arguments, and the first argument should be a const.
Suggested Technical Corrigendum
Change:
int wmemcmp(wchar_t * restrict s1,
const wchar_t * restrict s2, size_t n);
to:
int wmemcmp(const wchar_t * s1,
const wchar_t * s2, size_t n);
Previous Defect Report
< - >
Next Defect Report