mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-11 01:06:01 +03:00
04b9dc2d30
Things were getting a little crowded in the project root, so this patch moves the Lib*/ directories into Libraries/.
18 lines
315 B
C++
18 lines
315 B
C++
#include "CUserInfo.h"
|
|
#include <pwd.h>
|
|
#include <stdlib.h>
|
|
#include <unistd.h>
|
|
|
|
const char* get_current_user_home_path()
|
|
{
|
|
if (auto* home_env = getenv("HOME"))
|
|
return home_env;
|
|
|
|
auto d = "/";
|
|
uid_t uid = getuid();
|
|
if (auto* pwd = getpwuid(uid))
|
|
return pwd->pw_dir;
|
|
|
|
return d;
|
|
}
|