![]() |
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 | passwd |
Functions | |
| struct passwd * | getpwuid (uid_t uid) |
| Look a user up by its number. More... | |
| struct passwd * | getpwnam (const char *name) |
| Look a user up by its name. More... | |
| struct passwd* getpwnam | ( | const char * | name | ) |
Look a user up by its name.
| name | The user to look up. |
| struct | passwd *: The record when the user exists, and a null pointer when it does not. |
| struct passwd* getpwuid | ( | uid_t | uid | ) |
Look a user up by its number.
| uid | The user to look up. |
| struct | passwd *: The record when the user exists, and a null pointer when it does not. |