 
                            ...
It is not necessary to go beyond the standard C library to find examples that violate this recommendation, because the C language often prioritizes performance at the expense of robustness. The following are two examples from C99 §7§7.21.
| Code Block | ||
|---|---|---|
| 
 | ||
| char *strncpy(char * restrict s1, const char * restrict s2, size_t n); char *strncat(char * restrict s1, const char * restrict s2, size_t n); | 
...
| Wiki Markup | 
|---|
| \[[ISO/IEC 9899:1999|AA. References#ISO/IEC 9899-1999]\] \[[ISO/IEC TR 24731-1:2007|AA. References#ISO/IEC TR 24731-1-2007]\] | 
...