Revision bf1ee636780f3fcaf358827168fa8a0e26c598e2 authored by Matthias Urlichs on 18 September 2007, 09:29:09 UTC, committed by Junio C Hamano on 18 September 2007, 21:00:20 UTC
Some people seem to create SVN branch names with spaces
or other shell metacharacters.

Signed-off-by: Matthias Urlichs <smurf@smurf.noris.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 7a461b5
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