Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The strcpy_s() function defined in C11 Annex K  [ISO/IEC 9899:2011] provides additional safeguards, including accepting the size of the destination buffer as an additional argument. (See STR07-C. Use the bounds-checking interfaces for remediation of existing string manipulation code.) Also, strnlen_s() accepts a maximum-length argument for strings that may not be null-terminated.

...

Bibliography

ISO/IEC 9899:2011]
[Subclause K.3.7.1.3 "The strcpy_s Function"[Seacord 2013]Chapter 2, "Strings"

...