Imported Upstream version 3.5.1
[platform/upstream/ccache.git] / src / envtoconfitems.h
1 #ifndef ENVTOCONFITEMS_H
2 #define ENVTOCONFITEMS_H
3
4 #include "system.h"
5
6 struct env_to_conf_item {
7         const char *env_name;
8         const char *conf_name;
9 };
10
11 const struct env_to_conf_item *envtoconfitems_get(const char *str, size_t len);
12 size_t envtoconfitems_count(void);
13
14 #endif