root / lib / filter-utils.h @ aebfd4cc
History | View | Annotate | Download (496 Bytes)
| 1 | /* SylFilter - a message filter
|
|---|---|
| 2 | * |
| 3 | * Copyright (C) 2011 Hiroyuki Yamamoto |
| 4 | * Copyright (C) 2011 Sylpheed Development Team |
| 5 | */ |
| 6 | |
| 7 | #ifndef __FILTER_UTILS_H__
|
| 8 | #define __FILTER_UTILS_H__
|
| 9 | |
| 10 | char *xfilter_utils_get_file_contents(const char *file); |
| 11 | void xfilter_free_mem(void *mem); |
| 12 | const char *xfilter_utils_get_home_dir(void); |
| 13 | const char *xfilter_utils_get_base_dir(void); |
| 14 | int xfilter_utils_set_base_dir(const char *path); |
| 15 | |
| 16 | int xfilter_utils_mkdir(const char *path); |
| 17 | |
| 18 | #endif /* __FILTER_UTILS_H__ */ |