Staging
v0.5.1
https://github.com/git/git
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