mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-11-01 05:41:01 +00:00
18 lines
371 B
C++
18 lines
371 B
C++
|
|
#include "CUserInfo.h"
|
||
|
|
#include <stdlib.h>
|
||
|
|
#include <unistd.h>
|
||
|
|
#include <pwd.h>
|
||
|
|
|
||
|
|
const char *get_current_user_home_path() {
|
||
|
|
if (auto* home_env = getenv("HOME")) {
|
||
|
|
return home_env;
|
||
|
|
} else {
|
||
|
|
auto d = "/";
|
||
|
|
uid_t uid = getuid();
|
||
|
|
if (auto* pwd = getpwuid(uid))
|
||
|
|
return pwd->pw_dir;
|
||
|
|
else
|
||
|
|
return d;
|
||
|
|
}
|
||
|
|
}
|