mirror of
				https://github.com/swaywm/sway.git
				synced 2025-11-03 09:01:43 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
	
		
			239 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
	
		
			239 B
		
	
	
	
		
			C
		
	
	
	
	
	
#ifndef _SWAY_READLINE_H
 | 
						|
#define _SWAY_READLINE_H
 | 
						|
 | 
						|
#include <stdio.h>
 | 
						|
 | 
						|
char *read_line(FILE *file);
 | 
						|
char *peek_line(FILE *file, int line_offset, long *position);
 | 
						|
char *read_line_buffer(FILE *file, char *string, size_t string_len);
 | 
						|
 | 
						|
#endif
 |