https://github.com/git/git
Revision 281e67d6fa8e523147792c17fbe6db03f13f72e1 authored by Alan Chandler on 03 October 2006, 20:11:25 UTC, committed by Junio C Hamano on 04 October 2006, 06:58:38 UTC
Still not managed to understand git-send-mail sufficiently well to  not
accidently miss of this list when I sending it to Junio

Signed-off-by: Alan Chandler <alan@chandlerfamily.org.uk>
Signed-off-by: Junio C Hamano <junkio@cox.net>
1 parent 604cb21
Raw File
Tip revision: 281e67d6fa8e523147792c17fbe6db03f13f72e1 authored by Alan Chandler on 03 October 2006, 20:11:25 UTC
Fix usage string to match that given in the man page
Tip revision: 281e67d
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