Rivoreo Source Code Repositories
src.rivoreo.one
/
systemd-stable
/
v247
/
.
/
man
/
path-documents.c
blob: a6c1f9371ae22d9318963cec2eb6e04fbadc1fa1 [
file
] [
log
] [
blame
] [
raw
]
#include
<stdio.h>
#include
<sd-path.h>
int
main
(
void
)
{
char
*
t
;
sd_path_lookup
(
SD_PATH_USER_DOCUMENTS
,
NULL
,
&
t
);
printf
(
"~/Documents: %s\n"
,
t
);
}