mirror of
				https://git.proxmox.com/git/mirror_frr
				synced 2025-11-04 03:29:06 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			25 lines
		
	
	
		
			440 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			440 B
		
	
	
	
		
			C
		
	
	
	
	
	
/*
 | 
						|
 * $Id: str.h,v 1.1 2002/12/13 20:15:29 paul Exp $
 | 
						|
 */
 | 
						|
 | 
						|
#ifndef _ZEBRA_STR_H
 | 
						|
#define _ZEBRA_STR_H
 | 
						|
 | 
						|
#ifndef HAVE_SNPRINTF
 | 
						|
int snprintf(char *, size_t, const char *, ...);
 | 
						|
#endif
 | 
						|
 | 
						|
#ifndef HAVE_VSNPRINTF
 | 
						|
#define vsnprintf(buf, size, format, args) vsprintf(buf, format, args)
 | 
						|
#endif
 | 
						|
 | 
						|
#ifndef HAVE_STRLCPY
 | 
						|
size_t strlcpy(char *, const char *, size_t);
 | 
						|
#endif
 | 
						|
 | 
						|
#ifndef HAVE_STRLCAT
 | 
						|
size_t strlcat(char *, const char *, size_t);
 | 
						|
#endif
 | 
						|
 | 
						|
#endif
 |