Revision 21bb3851ee3c6fe945ed17c10b79dc153418fcdf authored by Junio C Hamano on 13 June 2022, 22:53:44 UTC, committed by Junio C Hamano on 13 June 2022, 22:53:44 UTC
Doc update.

* gc/document-config-worktree-scope:
  config: document and test the 'worktree' scope
2 parent s da48270 + db7961e
Raw File
varint.h
#ifndef VARINT_H
#define VARINT_H

int encode_varint(uintmax_t, unsigned char *);
uintmax_t decode_varint(const unsigned char **);

#endif /* VARINT_H */
back to top