From 1566b6faa8534118c3566188181367cd0868468f Mon Sep 17 00:00:00 2001 From: Mitja Felicijan Date: Thu, 9 Nov 2023 23:19:53 +0100 Subject: Added partial matching and introduced threads --- examples/dte/vars.h | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 examples/dte/vars.h (limited to 'examples/dte/vars.h') diff --git a/examples/dte/vars.h b/examples/dte/vars.h new file mode 100644 index 0000000..02d53be --- /dev/null +++ b/examples/dte/vars.h @@ -0,0 +1,11 @@ +#ifndef VARS_H +#define VARS_H + +#include +#include "util/macros.h" +#include "util/ptr-array.h" + +bool expand_normal_var(const char *name, char **value, const void *userdata) NONNULL_ARGS; +void collect_normal_vars(PointerArray *a, const char *prefix) NONNULL_ARGS; + +#endif -- cgit v1.2.3