Crinit -- Configurable Rootfs Init
Loading...
Searching...
No Matches
mock-getgrnam_r.h
Go to the documentation of this file.
1// SPDX-License-Identifier: MIT
6#ifndef __MOCK_GETGRNAM_R_H__
7#define __MOCK_GETGRNAM_R_H__
8
9#include <fcntl.h>
10#include <grp.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_getgrnam_r(const char *__restrict name, struct group *__restrict resultbuf, char *__restrict buffer,
21 size_t buflen, struct group **__restrict result);
22
23#endif /* __MOCK_GETPWNAM_R_H__ */
int __wrap_getgrnam_r(const char *__restrict name, struct group *__restrict resultbuf, char *__restrict buffer, size_t buflen, struct group **__restrict result)
Definition mock-getgrnam_r.c:16