Systemd/man/path-documents.c

10 lines
158 B
C
Raw Permalink Normal View History

2020-03-23 20:36:41 +01:00
#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);
}