17 lines
174 B
C
Raw Normal View History

2020-12-02 18:18:49 -05:00
#ifndef FEATURE_H
#define FEATURE_H
#ifdef __cplusplus
extern "C" {
#endif
int feature_has(const char *name);
int feature_get_mode();
#ifdef __cplusplus
}
#endif
#endif