userdiff.hon commit Merge branch 'ma/pkt-line-leakfix' (c78e182)
   1#ifndef USERDIFF_H
   2#define USERDIFF_H
   3
   4#include "notes-cache.h"
   5
   6struct userdiff_funcname {
   7        const char *pattern;
   8        int cflags;
   9};
  10
  11struct userdiff_driver {
  12        const char *name;
  13        const char *external;
  14        int binary;
  15        struct userdiff_funcname funcname;
  16        const char *word_regex;
  17        const char *textconv;
  18        struct notes_cache *textconv_cache;
  19        int textconv_want_cache;
  20};
  21
  22int userdiff_config(const char *k, const char *v);
  23struct userdiff_driver *userdiff_find_by_name(const char *name);
  24struct userdiff_driver *userdiff_find_by_path(const char *path);
  25
  26/*
  27 * Initialize any textconv-related fields in the driver and return it, or NULL
  28 * if it does not have textconv enabled at all.
  29 */
  30struct userdiff_driver *userdiff_get_textconv(struct userdiff_driver *driver);
  31
  32#endif /* USERDIFF */