blob: 0e3d93acc93264dbac31be413cd1c08006a83dba (
plain)
1
2
3
4
5
6
7
8
9
|
#ifndef ADD_INTERACTIVE_H
#define ADD_INTERACTIVE_H
struct repository;
struct pathspec;
int run_add_i(struct repository *r, const struct pathspec *ps);
int run_add_p(struct repository *r, const struct pathspec *ps);
#endif
|