mirror of
				https://git.proxmox.com/git/mirror_frr
				synced 2025-11-04 13:43:22 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			36 lines
		
	
	
		
			690 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			690 B
		
	
	
	
		
			C
		
	
	
	
	
	
/*
 | 
						|
 * $Id: str.h,v 1.4 2005/09/19 09:53:21 hasso Exp $
 | 
						|
 */
 | 
						|
 | 
						|
#ifndef _ZEBRA_STR_H
 | 
						|
#define _ZEBRA_STR_H
 | 
						|
 | 
						|
#ifndef HAVE_SNPRINTF
 | 
						|
extern 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
 | 
						|
extern size_t strlcpy(char *, const char *, size_t);
 | 
						|
#endif
 | 
						|
 | 
						|
#ifndef HAVE_STRLCAT
 | 
						|
extern size_t strlcat(char *, const char *, size_t);
 | 
						|
#endif
 | 
						|
 | 
						|
#ifndef HAVE_STRNLEN
 | 
						|
extern size_t strnlen(const char *s, size_t maxlen);
 | 
						|
#endif
 | 
						|
 | 
						|
#ifndef HAVE_STRNDUP
 | 
						|
extern char * strndup (const char *, size_t);
 | 
						|
#endif
 | 
						|
 | 
						|
extern int strmatch (const char *, const char *);
 | 
						|
 | 
						|
#endif /* _ZEBRA_STR_H */
 | 
						|
 |