Crinit -- Configurable Rootfs Init
Loading...
Searching...
No Matches
mock-getpwnam_r.h
Go to the documentation of this file.
1// SPDX-License-Identifier: MIT
6#ifndef __MOCK_GETPWNAM_R_H__
7#define __MOCK_GETPWNAM_R_H__
8
9#include <fcntl.h>
10#include <pwd.h>
11#include <stddef.h>
12#include <sys/stat.h>
13
19// NOLINTNEXTLINE(readability-identifier-naming) Rationale: Naming scheme fixed due to linker wrapping.
20int __wrap_getpwnam_r(const char *__restrict name, struct passwd *__restrict resultbuf, char *__restrict buffer,
21 size_t buflen, struct passwd **__restrict result);
22
23#endif /* __MOCK_GETPWNAM_R_H__ */
int __wrap_getpwnam_r(const char *__restrict name, struct passwd *__restrict resultbuf, char *__restrict buffer, size_t buflen, struct passwd **__restrict result)
Definition mock-getpwnam_r.c:16