rspec/rules/S988/cfamily/rule.adoc

32 lines
1.1 KiB
Plaintext
Raw Normal View History

This includes file and I/O functions ``++fgetpos++``, ``++fopen++``, ``++ftell++``, ``++gets++``, ``++perror++``, ``++remove++``, ``++rename++`` and ``++ungetc++``.
Streams and file I/O have a large number of unspecified, undefined and implementation-defined behaviors associated with them. It is assumed within MISRA C that they will not normally be needed in production code in embedded systems.
If any of the features of ``++stdio.h++`` need to be used in production code, then the issues associated with the features need to be understood.
== Noncompliant Code Example
2022-02-04 17:28:24 +01:00
[source,cpp]
----
#include <stdio.h> /* Noncompliant */
----
== See
* MISRA C:2004, 20.9 - The input/output library <stdio.h> shall not be used in production code.
* MISRA {cpp}:2008, 27-0-1 - The stream input/output library <cstdio> shall not be used.
* MISRA C:2012, 21.6 - The Standard Library input/output functions shall not be used
ifdef::env-github,rspecator-view[]
'''
== Comments And Links
(visible only on this page)
include::comments-and-links.adoc[]
endif::env-github,rspecator-view[]