mirror of
https://github.com/git/git.git
synced 2024-11-01 14:57:52 +01:00
68ee6dfc9e
Convert the index_bulk_checkin function, and the static functions it calls, to use pointers to struct object_id. Signed-off-by: brian m. carlson <sandals@crustytoothpaste.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
14 lines
324 B
C
14 lines
324 B
C
/*
|
|
* Copyright (c) 2011, Google Inc.
|
|
*/
|
|
#ifndef BULK_CHECKIN_H
|
|
#define BULK_CHECKIN_H
|
|
|
|
extern int index_bulk_checkin(struct object_id *oid,
|
|
int fd, size_t size, enum object_type type,
|
|
const char *path, unsigned flags);
|
|
|
|
extern void plug_bulk_checkin(void);
|
|
extern void unplug_bulk_checkin(void);
|
|
|
|
#endif
|