Revision ae6ac8483b706b48882dcee96a42a4198744308a authored by Junio C Hamano on 04 September 2015, 02:18:00 UTC, committed by Junio C Hamano on 04 September 2015, 02:18:00 UTC
Minor code cleanup.

* jc/calloc-pathspec:
  ps_matched: xcalloc() takes nmemb and then element size
2 parent s 8136099 + 8b54c23
Raw File
varint.h
#ifndef VARINT_H
#define VARINT_H

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

#endif /* VARINT_H */
back to top