Revision 71e83b2e7da61f699f4405233cc20ebf9cb7c66e authored by Junio C Hamano on 08 February 2021, 22:05:53 UTC, committed by Junio C Hamano on 08 February 2021, 22:05:54 UTC
Doc update.

* ma/doc-pack-format-varint-for-sizes:
  pack-format.txt: document sizes at start of delta data
2 parent s 5731e40 + 7b77f5a
Raw File
bulk-checkin.h
/*
 * Copyright (c) 2011, Google Inc.
 */
#ifndef BULK_CHECKIN_H
#define BULK_CHECKIN_H

#include "cache.h"

int index_bulk_checkin(struct object_id *oid,
		       int fd, size_t size, enum object_type type,
		       const char *path, unsigned flags);

void plug_bulk_checkin(void);
void unplug_bulk_checkin(void);

#endif
back to top