systemd/man/path-documents.c

18 lines
265 B
C
Raw Normal View History

2020-03-23 19:36:41 +00:00
#include <stdio.h>
#include <stdlib.h>
2020-03-23 19:36:41 +00:00
#include <sd-path.h>
int main(void) {
int r;
2020-03-23 19:36:41 +00:00
char *t;
r = sd_path_lookup(SD_PATH_USER_DOCUMENTS, NULL, &t);
if (r < 0)
return EXIT_FAILURE;
2020-03-23 19:36:41 +00:00
printf("~/Documents: %s\n", t);
free(t);
return EXIT_SUCCESS;
2020-03-23 19:36:41 +00:00
}