1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-16 23:15:07 +00:00
serenity/Base/usr/share/man/man2/geteuid.md
Nico Weber 1f323076f0 Add man pages for seteuid() and friends.
Also add an overview page that explains the general concepts.
2020-07-03 19:37:28 +02:00

498 B

Name

geteuid, getegid - get effective user / group id

Synopsis

#include <unistd.h>

uid_t geteuid(void);
gid_t getegid(void);

Description

Returns the effective user or group id.

See also