X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=blobdiff_plain;f=grep.h;h=970308799664fe6a3871c0b8364c13e43cf96e1f;hb=cab1b013e6f7cc52806926a792c6798f4c7ac4be;hp=0c61b00cbf3c4f059aedc02d487b4103eea31823;hpb=a0075d9e6ae211e8bde3eb40c8cdebb1772ee680;p=git.git diff --git a/grep.h b/grep.h index 0c61b00cb..970308799 100644 --- a/grep.h +++ b/grep.h @@ -91,6 +91,9 @@ struct grep_opt { unsigned last_shown; int show_hunk_mark; void *priv; + + void (*output)(struct grep_opt *opt, const void *data, size_t size); + void *output_priv; }; extern void append_grep_pattern(struct grep_opt *opt, const char *pat, const char *origin, int no, enum grep_pat_token t); @@ -99,4 +102,7 @@ extern void compile_grep_patterns(struct grep_opt *opt); extern void free_grep_patterns(struct grep_opt *opt); extern int grep_buffer(struct grep_opt *opt, const char *name, char *buf, unsigned long size); +extern struct grep_opt *grep_opt_dup(const struct grep_opt *opt); +extern int grep_threads_ok(const struct grep_opt *opt); + #endif