Crinit -- Configurable Rootfs Init
Loading...
Searching...
No Matches
mock-opendir.h
Go to the documentation of this file.
1// SPDX-License-Identifier: MIT
6#ifndef __MOCK_OPENDIR_H__
7#define __MOCK_OPENDIR_H__
8
9#include <dirent.h>
10#include <sys/types.h>
11
17DIR *__wrap_opendir(const char *name); // NOLINT(readability-identifier-naming)
18 // Rationale: Naming scheme fixed due to linker wrapping.
19
20#endif /* __MOCK_OPENDIR_H__ */
DIR * __wrap_opendir(const char *name)
Definition mock-opendir.c:12