Staging
v0.5.1
https://github.com/git/git
Revision e1a0c8b1483b38d32d3870408e03a6c1b340aa15 authored by Junio C Hamano on 02 March 2006, 01:06:12 UTC, committed by Junio C Hamano on 02 March 2006, 01:06:12 UTC
* lt/fix-apply:
  git-am: --whitespace=x option.
  git-apply: war on whitespace -- finishing touches.
  git-apply --whitespace=nowarn
  apply --whitespace: configuration option.
  apply: squelch excessive errors and --whitespace=error-all
  apply --whitespace fixes and enhancements.
  The war on trailing whitespace
2 parent s 9e7c73d + 12cbbdc
Raw File
Tip revision: e1a0c8b1483b38d32d3870408e03a6c1b340aa15 authored by Junio C Hamano on 02 March 2006, 01:06:12 UTC
Merge branch 'lt/fix-apply' into maint
Tip revision: e1a0c8b
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