12 lines
290 B
12 lines
290 B
#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
|
|
|