decorate.hon commit perl/Git.pm: Honor SSH_ASKPASS as fallback if GIT_ASKPASS is not set (8f3cab2)
   1#ifndef DECORATE_H
   2#define DECORATE_H
   3
   4struct object_decoration {
   5        const struct object *base;
   6        void *decoration;
   7};
   8
   9struct decoration {
  10        const char *name;
  11        unsigned int size, nr;
  12        struct object_decoration *hash;
  13};
  14
  15extern void *add_decoration(struct decoration *n, const struct object *obj, void *decoration);
  16extern void *lookup_decoration(struct decoration *n, const struct object *obj);
  17
  18#endif