]> git.ipfire.org Git - thirdparty/systemd.git/blame - man/path-documents.c
man: fix incorrectly placed full stop
[thirdparty/systemd.git] / man / path-documents.c
CommitLineData
b35ed553
ZJS
1#include <stdio.h>
2#include <sd-path.h>
3
4int main(void) {
5 char *t;
6
7 sd_path_lookup(SD_PATH_USER_DOCUMENTS, NULL, &t);
8 printf("~/Documents: %s\n", t);
9}