2015-08-04 21:30:40 -04:00
|
|
|
#ifndef _SWAY_READLINE_H
|
|
|
|
#define _SWAY_READLINE_H
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
char *read_line(FILE *file);
|
2018-06-01 18:35:16 -04:00
|
|
|
char *peek_line(FILE *file, int line_offset, long *position);
|
2016-01-28 07:56:46 -05:00
|
|
|
char *read_line_buffer(FILE *file, char *string, size_t string_len);
|
2015-08-04 21:30:40 -04:00
|
|
|
|
|
|
|
#endif
|