blob: 644a24421f0d233523d07842b3c980559559489f (
plain) (
tree)
|
|
#ifndef GRAB_WORK_H
#define GRAB_WORK_H
#include <pcre2.h>
typedef struct {
char c;
pcre2_code *re;
#if DEBUG
bool free_me;
#endif
} op_t;
void process_file(const char *filename, unsigned char **buf);
#endif /* !GRAB_WORK_H */
|