![]() |
Tenok
A Linux-like Real-Time Operating System for Robotics and Internet of Things
|
#include <sys/types.h>
Go to the source code of this file.
Data Structures | |
| struct | group |
Functions | |
| struct group * | getgrgid (gid_t gid) |
| Look a group up by its number. More... | |
| struct group * | getgrnam (const char *name) |
| Look a group up by its name. More... | |
| struct group* getgrgid | ( | gid_t | gid | ) |
Look a group up by its number.
| gid | The group to look up. |
| struct | group *: The record when the group exists, and a null pointer when it does not. |
| struct group* getgrnam | ( | const char * | name | ) |
Look a group up by its name.
| name | The group to look up. |
| struct | group *: The record when the group exists, and a null pointer when it does not. |