Crinit -- Configurable Rootfs Init
Loading...
Searching...
No Matches
mock-getgrgid_r.h
Go to the documentation of this file.
1// SPDX-License-Identifier: MIT
6#ifndef __MOCK_GETGRUID_R_H__
7#define __MOCK_GETGRUID_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_getgrgid_r(gid_t gid, struct group *__restrict resultbuf, char *__restrict buffer, size_t buflen,
21 struct group **__restrict result);
22
23#endif /* __MOCK_GETGRUID_R_H__ */
int __wrap_getgrgid_r(gid_t gid, struct group *__restrict resultbuf, char *__restrict buffer, size_t buflen, struct group **__restrict result)
Definition mock-getgrgid_r.c:16