mirror of
https://github.com/git/git
synced 2024-10-28 19:25:47 +00:00
1c4b660412
CodingGuidelines states that the first #include in C files should be git-compat-util.h or another header file that includes it, such as cache.h or builtin.h. Signed-off-by: David Aguilar <davvid@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
7 lines
168 B
C
7 lines
168 B
C
#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 */
|