Gitiles
Code Review
Sign In
gerrit.openfyde.cn
/
chromium.googlesource.com
/
chromiumos
/
third_party
/
systemd
/
refs/heads/stabilize-13904.66.B
/
.
/
man
/
path-documents.c
blob: a6c1f9371ae22d9318963cec2eb6e04fbadc1fa1 [
file
] [
log
] [
blame
]
Zbigniew Jędrzejewski-Szmek
b35ed55
2020-03-23 20:36:41 +0100
[
diff
] [
blame
]
1
#include
<stdio.h>
2
#include
<sd-path.h>
3
4
int
main
(
void
)
{
5
char
*
t
;
6
7
sd_path_lookup
(
SD_PATH_USER_DOCUMENTS
,
NULL
,
&
t
);
8
printf
(
"~/Documents: %s\n"
,
t
);
9
}