tree.hon commit Merge the new object model thing from Daniel Barkalow (b51ad43)
   1#ifndef TREE_H
   2#define TREE_H
   3
   4#include "object.h"
   5
   6extern const char *tree_type;
   7
   8struct tree {
   9        struct object object;
  10        unsigned has_full_path : 1;
  11};
  12
  13struct tree *lookup_tree(unsigned char *sha1);
  14
  15int parse_tree(struct tree *tree);
  16
  17#endif /* TREE_H */