[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git] / clang-tools-extra / docs / clang-tidy / checks / android / cloexec-fopen.rst
blob0552969848960542b5815d91e2bd6d65faa546b2
1 .. title:: clang-tidy - android-cloexec-fopen
3 android-cloexec-fopen
4 =====================
6 ``fopen()`` should include ``e`` in their mode string; so ``re`` would be
7 valid. This is equivalent to having set ``FD_CLOEXEC on`` that descriptor.
9 Examples:
11 .. code-block:: c++
13   fopen("fn", "r");
15   // becomes
17   fopen("fn", "re");