Welcome to mirror list, hosted at ThFree Co, Russian Federation.

line_buffer.h « vcs-svn - git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9c78ae11a1e0774611b61a5407fab6cabfec226a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef LINE_BUFFER_H_
#define LINE_BUFFER_H_

int buffer_init(const char *filename);
int buffer_deinit(void);
char *buffer_read_line(void);
char *buffer_read_string(uint32_t len);
void buffer_copy_bytes(uint32_t len);
void buffer_skip_bytes(uint32_t len);
void buffer_reset(void);

#endif