 1c4b660412
			
		
	
	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>
		
			
				
	
	
		
			8 lines
		
	
	
		
			168 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			8 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 */
 |