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