File: match-trees.h

package info (click to toggle)
rust-git-cinnabar 0.7.2-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 15,372 kB
  • sloc: ansic: 300,181; makefile: 2,754; sh: 118
file content (10 lines) | stat: -rw-r--r-- 353 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
#ifndef MATCH_TREES_H
#define MATCH_TREES_H

struct object_id;
struct repository;

void shift_tree(struct repository *, const struct object_id *, const struct object_id *, struct object_id *, int);
void shift_tree_by(struct repository *, const struct object_id *, const struct object_id *, struct object_id *, const char *);

#endif /* MATCH_TREES_H */