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