repo.or.cz
/
svn-fe.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fix node-prop-change handling bug.
[svn-fe.git]
/
line_buffer.h
blob
e546f4de627cf0c7eb0dd44d28793561be8c3fe5
1
#ifndef LINE_BUFFER_H_
2
#define LINE_BUFFER_H_
3
4
#include <stdint.h>
5
6
char
*
buffer_read_line
(
void
);
7
8
char
*
buffer_read_string
(
uint32_t
len
);
9
10
void
buffer_copy_bytes
(
uint32_t
len
);
11
12
void
buffer_skip_bytes
(
uint32_t
len
);
13
14
#endif