https://github.com/git/git
Revision ccd14e569dcfe1a83b33f84fad8cfed68676ef5d authored by Junio C Hamano on 10 January 2007, 22:16:16 UTC, committed by Junio C Hamano on 10 January 2007, 22:16:16 UTC
* js/reflog:
  Sanitize for_each_reflog_ent()
2 parent s 6fc301b + 883d60f
Raw File
Tip revision: ccd14e569dcfe1a83b33f84fad8cfed68676ef5d authored by Junio C Hamano on 10 January 2007, 22:16:16 UTC
Merge branch 'js/reflog'
Tip revision: ccd14e5
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