diff options
-rw-r--r-- | object.c | 12 | ||||
-rw-r--r-- | object.h | 1 |
2 files changed, 13 insertions, 0 deletions
@@ -316,6 +316,18 @@ uc_prototype_new(uc_prototype *parent) return proto; } +json_object * +uc_prototype_lookup(uc_prototype *proto, const char *key) +{ + json_object *val; + + for (; proto; proto = proto->parent) + if (json_object_object_get_ex(proto->header.jso, key, &val)) + return val; + + return NULL; +} + uc_prototype * uc_protoref_new(json_object *value, uc_prototype *proto) { @@ -119,6 +119,7 @@ uc_cfunction *uc_cfunction_new(const char *name, uc_cfn_ptr cfn); uc_regexp *uc_regexp_new(const char *pattern, bool icase, bool newline, bool global, char **err); uc_prototype *uc_prototype_new(uc_prototype *parent); uc_prototype *uc_protoref_new(json_object *value, uc_prototype *proto); +json_object *uc_prototype_lookup(uc_prototype *proto, const char *key); uc_ressource_type *uc_ressource_type_add(const char *name, uc_prototype *proto, void (*freefn)(void *)); uc_ressource_type *uc_ressource_type_lookup(const char *name); |