Staging
v0.5.1
https://github.com/git/git
Revision 0b92f1a9d213644d2cd6c1870091c090a6b7eca9 authored by Lars Hjemli on 20 October 2006, 21:24:32 UTC, committed by Junio C Hamano on 20 October 2006, 23:50:36 UTC
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Signed-off-by: Junio C Hamano <junkio@cox.net>
1 parent 96a035d
Raw File
Tip revision: 0b92f1a9d213644d2cd6c1870091c090a6b7eca9 authored by Lars Hjemli on 20 October 2006, 21:24:32 UTC
Fix typo in show-index.c
Tip revision: 0b92f1a
strbuf.h
#ifndef STRBUF_H
#define STRBUF_H
struct strbuf {
	int alloc;
	int len;
	int eof;
	char *buf;
};

extern void strbuf_init(struct strbuf *);
extern void read_line(struct strbuf *, FILE *, int);

#endif /* STRBUF_H */
back to top