Air Quality Monitor
Portable C application for collecting, storing, and analyzing air quality sensor readings
Loading...
Searching...
No Matches
aqm_paths.h
1#ifndef AQM_PATHS_H
2#define AQM_PATHS_H
3
4#include <stddef.h>
5
7#define AQM_PATH_MAX 512
8
17void aqm_paths_init(void);
18
26int aqm_get_data_dir(char *buf, size_t buflen);
27
34int aqm_get_db_path(char *buf, size_t buflen);
35
43int aqm_get_config_path(char *buf, size_t buflen);
44
45#endif