repo.or.cz
/
git
/
gitweb.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
git.spec.in: perl subpackage is installed in perl_vendorlib not vendorarch
[git/gitweb.git]
/
strbuf.h
blob
74cc012c2c62d05cb773c6dd4776af0fdc237dfb
1
#ifndef STRBUF_H
2
#define STRBUF_H
3
struct
strbuf
{
4
int
alloc
;
5
int
len
;
6
int
eof
;
7
char
*
buf
;
8
};
9
10
extern
void
strbuf_init
(
struct
strbuf
*);
11
extern
void
read_line
(
struct
strbuf
*,
FILE
*,
int
);
12
13
#endif
/* STRBUF_H */