libXDGdirs v1.1.1-2-g54a653b
An implementation of XDG Base Directory Specification
Loading...
Searching...
No Matches
test.c
Go to the documentation of this file.
1#include <stdio.h>
2#include "xdgdirs.h"
3
4int main()
5{
6 const char* data_home = xdgDataHome();
7 if (data_home) {
8 puts(data_home);
9 }
10 return 0;
11}
const char * xdgDataHome(void)
Value of $XDG_DATA_HOME.
int main()
Definition test.c:4