]> git.ipfire.org Git - thirdparty/systemd.git/blob - man/path-documents.c
sd-bus: Add sd_bus_message_peek_type docs
[thirdparty/systemd.git] / man / path-documents.c
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 }