add emacs indentation variables to source files in line with current vim settings
[monky] / src / fs.h
1 /* -*- mode: c; c-basic-offset: 4; tab-width: 4; indent-tabs-mode: t -*- */
2
3 #ifndef _FS_H
4 #define _FS_H
5
6 #include "conky.h"      /* DEFAULT_TEXT_BUFFER_SIZE */
7
8 /* needed here and by fs.c */
9 struct fs_stat {
10         char path[DEFAULT_TEXT_BUFFER_SIZE];
11         char type[DEFAULT_TEXT_BUFFER_SIZE];
12         long long size;
13         long long avail;
14         long long free;
15         char set;
16 };
17
18 void update_fs_stats(void);
19 struct fs_stat *prepare_fs_stat(const char *path);
20 void clear_fs_stats(void);
21
22 #endif /* _FS_H */