1
1
Fork 0
mirror of https://github.com/swaywm/sway synced 2024-05-23 21:36:16 +02:00
sway/include/readline.h
2016-01-28 07:57:07 -05:00

10 lines
177 B
C

#ifndef _SWAY_READLINE_H
#define _SWAY_READLINE_H
#include <stdio.h>
char *read_line(FILE *file);
char *read_line_buffer(FILE *file, char *string, size_t string_len);
#endif