Home | History | Annotate | Download | only in misc

Lines Matching refs:ssfilter

7 /* NOTE: Android yacc build rules transform ssfilter.y into ssfilter.h, and
8 * #include "ssfilter.h" gets this file instead of the ssfilter.h in the
9 * source tree. This does not work. #include <ssfilter.h> instead. */
10 #include <ssfilter.h>
12 typedef struct ssfilter * ssfilter_t;
16 static struct ssfilter * alloc_node(int type, void *pred)
18 struct ssfilter *n = malloc(sizeof(*n));
316 int ssfilter_parse(struct ssfilter **f, int argc, char **argv, FILE *fp)