mirror of
https://github.com/git/git.git
synced 2024-11-01 14:57:52 +01:00
11 lines
224 B
C
11 lines
224 B
C
|
#ifndef LS_REFS_H
|
||
|
#define LS_REFS_H
|
||
|
|
||
|
struct repository;
|
||
|
struct argv_array;
|
||
|
struct packet_reader;
|
||
|
extern int ls_refs(struct repository *r, struct argv_array *keys,
|
||
|
struct packet_reader *request);
|
||
|
|
||
|
#endif /* LS_REFS_H */
|