Crinit -- Configurable Rootfs Init
All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
mock-mount.h
Go to the documentation of this file.
1// SPDX-License-Identifier: MIT
6#ifndef __MOCK_MOUNT_H__
7#define __MOCK_MOUNT_H__
8
14int __wrap_mount(const char *source, const char *target, // NOLINT(readability-identifier-naming)
15 const char *filesystemtype, unsigned long mountflags, // NOLINT(readability-identifier-naming)
16 const void *data); // NOLINT(readability-identifier-naming)
17 // Rationale: Naming scheme fixed due to linker wrapping.
18
19#endif /* __MOCK_MOUNT_H__ */
int __wrap_mount(const char *source, const char *target, const char *filesystemtype, unsigned long mountflags, const void *data)
Definition mock-mount.c:13