Revision bfb73b2ebc2d50c8e14133ad15137604fc54563d authored by Patrick Mauritz on 19 September 2005, 14:11:19 UTC, committed by Junio C Hamano on 20 September 2005, 00:35:49 UTC
We sometimes do not install git-send-email nor git-http-pull; do not
unconditionally create symlinks to them.

Signed-off-by: Patrick Mauritz <oxygene@studentenbude.ath.cx>
Signed-off-by: Junio C Hamano <junkio@cox.net>
1 parent 3b944aa
Raw File
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