aboutsummaryrefslogtreecommitdiff
path: root/src/filter/uniq.h
blob: fa235a510e6d4af9e8e8f4169d4266ff433d43a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
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