more functionality for plugins
authorFelix Fietkau <nbd@openwrt.org>
Tue, 12 Feb 2008 12:31:43 +0000 (13:31 +0100)
committerFelix Fietkau <nbd@openwrt.org>
Tue, 12 Feb 2008 12:31:43 +0000 (13:31 +0100)
uci_internal.h
util.c

index fdaf04a..8c15561 100644 (file)
@@ -42,6 +42,7 @@ struct uci_parse_context
 __plugin void *uci_malloc(struct uci_context *ctx, size_t size);
 __plugin void *uci_realloc(struct uci_context *ctx, void *ptr, size_t size);
 __plugin char *uci_strdup(struct uci_context *ctx, const char *str);
 __plugin void *uci_malloc(struct uci_context *ctx, size_t size);
 __plugin void *uci_realloc(struct uci_context *ctx, void *ptr, size_t size);
 __plugin char *uci_strdup(struct uci_context *ctx, const char *str);
+__plugin bool uci_validate_str(const char *str, bool name);
 __plugin void uci_add_history(struct uci_context *ctx, struct uci_list *list, int cmd, char *section, char *option, char *value);
 __plugin void uci_free_history(struct uci_history *h);
 __plugin struct uci_package *uci_alloc_package(struct uci_context *ctx, const char *name);
 __plugin void uci_add_history(struct uci_context *ctx, struct uci_list *list, int cmd, char *section, char *option, char *value);
 __plugin void uci_free_history(struct uci_history *h);
 __plugin struct uci_package *uci_alloc_package(struct uci_context *ctx, const char *name);
diff --git a/util.c b/util.c
index ac7b8cb..cba69c3 100644 (file)
--- a/util.c
+++ b/util.c
@@ -80,7 +80,7 @@ static unsigned int djbhash(unsigned int hash, char *str)
  * for names, only alphanum and _ is allowed (shell compatibility)
  * for types, we allow more characters
  */
  * for names, only alphanum and _ is allowed (shell compatibility)
  * for types, we allow more characters
  */
-static bool uci_validate_str(const char *str, bool name)
+__plugin bool uci_validate_str(const char *str, bool name)
 {
        if (!*str)
                return false;
 {
        if (!*str)
                return false;