Crinit -- Configurable Rootfs Init
mock-stpcpy.h
Go to the documentation of this file.
1 // SPDX-License-Identifier: MIT
6 #ifndef __MOCK_STPCPY_H__
7 #define __MOCK_STPCPY_H__
8 
9 #include <string.h>
10 
16 char *__wrap_stpcpy(char *dest, const char *src); // NOLINT(readability-identifier-naming)
17  // Rationale: Naming scheme fixed due to linker wrapping.
18 
19 #endif /* __MOCK_STPCPY_H__ */
char * __wrap_stpcpy(char *dest, const char *src)
Definition: mock-stpcpy.c:12