mirror of
				https://gitlab.labs.nic.cz/labs/bird.git
				synced 2024-05-11 16:54:54 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
		
			522 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			522 B
		
	
	
	
		
			C
		
	
	
	
	
	
| /*
 | |
|  *	BIRD Library -- String Functions
 | |
|  *
 | |
|  *	(c) 1998 Martin Mares <mj@ucw.cz>
 | |
|  *
 | |
|  *	Can be freely distributed and used under the terms of the GNU GPL.
 | |
|  */
 | |
| 
 | |
| #ifndef _BIRD_STRING_H_
 | |
| #define _BIRD_STRING_H_
 | |
| 
 | |
| #include <stdarg.h>
 | |
| #include <string.h>
 | |
| 
 | |
| int bsprintf(char *str, const char *fmt, ...);
 | |
| int bvsprintf(char *str, const char *fmt, va_list args);
 | |
| int bsnprintf(char *str, int size, const char *fmt, ...);
 | |
| int bvsnprintf(char *str, int size, const char *fmt, va_list args);
 | |
| 
 | |
| int patmatch(byte *pat, byte *str);
 | |
| 
 | |
| #endif
 |