#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