You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
196 B

#ifndef __CUTILS_PROPERTIES_H__
#define __CUTILS_PROPERTIES_H__
#define PROPERTY_VALUE_MAX 92
extern "C" {
int property_get(const char* key, char* value, const char* default_value);
}
#endif