Crinit -- Configurable Rootfs Init
Loading...
Searching...
No Matches
mock-strdup.h
Go to the documentation of this file.
1// SPDX-License-Identifier: MIT
6#ifndef __MOCK_STRDUP_H__
7#define __MOCK_STRDUP_H__
8
9#include <stddef.h>
10
16char *__wrap_strdup(const char *s); // NOLINT(readability-identifier-naming)
17 // Rationale: Naming scheme fixed due to linker wrapping.
18
19#endif /* __MOCK_STRDUP_H__ */
char * __wrap_strdup(const char *s)
Definition mock-strdup.c:12