comparison src/sys.h @ 31:80f008ce2079

core: add base dir
author David Demelier <markand@malikania.fr>
date Sun, 12 Jan 2020 21:05:42 +0100
parents bc9637a2601b
children 91bc2329ab0c
comparison
equal deleted inserted replaced
30:8f6a1ffb1ebe 31:80f008ce2079
31 */ 31 */
32 bool 32 bool
33 sys_init(void); 33 sys_init(void);
34 34
35 /** 35 /**
36 * Get the base system directory path.
37 *
38 * \return the path
39 */
40 const char *
41 sys_datadir(void);
42
43 /**
36 * Close the system. 44 * Close the system.
37 */ 45 */
38 void 46 void
39 sys_close(void); 47 sys_close(void);
40 48