mirror of
https://github.com/swaywm/sway.git
synced 2024-10-31 21:47:24 +00:00
10 lines
177 B
C
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
|