17 lines
136 B
C
17 lines
136 B
C
#include <stdlib.h>
|
|
#include <pcre.h>
|
|
#include "main.h"
|
|
|
|
typedef struct _Node {
|
|
char ** patterns;
|
|
} Node;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void compile()
|
|
{
|
|
|
|
}
|