mirror of
				https://github.com/swaywm/sway.git
				synced 2025-11-03 09:01:43 -05:00 
			
		
		
		
	No escaping on container names is done yet, as well as some values are hardcoded because they don't exist yet.
		
			
				
	
	
		
			15 lines
		
	
	
	
		
			498 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
	
		
			498 B
		
	
	
	
		
			C
		
	
	
	
	
	
#ifndef _SWAY_STRINGOP_H
 | 
						|
#define _SWAY_STRINGOP_H
 | 
						|
#include "list.h"
 | 
						|
 | 
						|
char *strip_whitespace(char *str, int *trimmed_start);
 | 
						|
char *strip_comments(char *str);
 | 
						|
list_t *split_string(const char *str, const char *delims);
 | 
						|
void free_flat_list(list_t *list);
 | 
						|
char *code_strchr(const char *string, char delimiter);
 | 
						|
char *code_strstr(const char *haystack, const char *needle);
 | 
						|
int unescape_string(char *string);
 | 
						|
char *join_args(char **argv, int argc);
 | 
						|
char *join_list(list_t *list, char *separator);
 | 
						|
 | 
						|
#endif
 |