mirror of
https://github.com/git/git
synced 2024-11-05 18:59:29 +00:00
10 lines
152 B
C
10 lines
152 B
C
|
#ifndef PRUNE_PACKED_H
|
||
|
#define PRUNE_PACKED_H
|
||
|
|
||
|
#define PRUNE_PACKED_DRY_RUN 01
|
||
|
#define PRUNE_PACKED_VERBOSE 02
|
||
|
|
||
|
void prune_packed_objects(int);
|
||
|
|
||
|
#endif
|