mirror of
https://github.com/systemd/systemd.git
synced 2024-11-01 00:51:24 +03:00
f4d74c6105
Documentation is licensed under LGPL-2.1-or-later. Scripts are MIT to facilitate reuse. Examples are relicensed to CC0-1.0 to maximise copy-and-paste for users, with permission from authors.
20 lines
305 B
C
20 lines
305 B
C
/* SPDX-License-Identifier: CC0-1.0 */
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <sd-path.h>
|
|
|
|
int main(void) {
|
|
int r;
|
|
char *t;
|
|
|
|
r = sd_path_lookup(SD_PATH_USER_DOCUMENTS, NULL, &t);
|
|
if (r < 0)
|
|
return EXIT_FAILURE;
|
|
|
|
printf("~/Documents: %s\n", t);
|
|
free(t);
|
|
|
|
return EXIT_SUCCESS;
|
|
}
|