0 /* See LICENSE file for copyright and license details. */
1 #ifndef _XDG_H_
2 #define _XDG_H_
3
4 #include <unistd.h>
5
6 extern char download_path[1024];
7 int xdg_path(char* path, size_t len);
8 void xdg_close();
9 int xdg_init();
10
11 #endif
12