1
0
Fork 0
mirror of https://github.com/swaywm/sway.git synced 2025-01-29 22:35:20 +01:00
sway/include/readline.h

10 lines
177 B
C
Raw Normal View History

#ifndef _SWAY_READLINE_H
#define _SWAY_READLINE_H
#include <stdio.h>
char *read_line(FILE *file);
2016-01-28 13:56:46 +01:00
char *read_line_buffer(FILE *file, char *string, size_t string_len);
#endif