projects
/
git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
Merge branch 'jn/doc-backslash'
[git]
/
vcs-svn
/
line_buffer.h
1
#ifndef LINE_BUFFER_H_
2
#define LINE_BUFFER_H_
3
4
int buffer_init(const char *filename);
5
int buffer_deinit(void);
6
char *buffer_read_line(void);
7
char *buffer_read_string(uint32_t len);
8
void buffer_copy_bytes(uint32_t len);
9
void buffer_skip_bytes(uint32_t len);
10
void buffer_reset(void);
11
12
#endif