aboutsummaryrefslogtreecommitdiff
path: root/src/filter/uniq.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/filter/uniq.h')
-rw-r--r--src/filter/uniq.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/filter/uniq.h b/src/filter/uniq.h
new file mode 100644
index 0000000..fa235a5
--- /dev/null
+++ b/src/filter/uniq.h
@@ -0,0 +1,12 @@
+#ifndef PLOC_GEN_FILTER_UNIQ_H
+#define PLOC_GEN_FILTER_UNIQ_H
+
+#include "stdbool.h"
+#include "pattern/pattern.h"
+
+void *create_uniq();
+void free_uniq(void *state);
+
+bool uniq(void *state, struct pattern *pattern);
+
+#endif \ No newline at end of file