mirror of
				https://git.proxmox.com/git/mirror_frr
				synced 2025-11-04 03:13:44 +00:00 
			
		
		
		
	The files converted in this commit either had some random misspelling or formatting weirdness that made them escape automated replacement, or have a particularly "weird" licensing setup (e.g. dual-licensed.) This also marks a bunch of "public domain" files as SPDX License "NONE". Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
		
			
				
	
	
		
			25 lines
		
	
	
		
			473 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			473 B
		
	
	
	
		
			C
		
	
	
	
	
	
// SPDX-License-Identifier: Unlicense
 | 
						|
 | 
						|
#ifndef _FRR_LLVM_DEBUGINFO_H
 | 
						|
#define _FRR_LLVM_DEBUGINFO_H
 | 
						|
 | 
						|
#include <stdbool.h>
 | 
						|
#include <llvm-c/Core.h>
 | 
						|
 | 
						|
#ifdef __cplusplus
 | 
						|
extern "C" {
 | 
						|
#endif
 | 
						|
 | 
						|
struct dbginfo;
 | 
						|
 | 
						|
extern struct dbginfo *dbginfo_load(LLVMModuleRef mod);
 | 
						|
extern bool dbginfo_struct_member(struct dbginfo *di, LLVMTypeRef typ,
 | 
						|
				  unsigned long long idx, char **struct_name,
 | 
						|
				  char **member_name);
 | 
						|
 | 
						|
#ifdef __cplusplus
 | 
						|
}
 | 
						|
#endif
 | 
						|
 | 
						|
#endif /* _FRR_LLVM_DEBUGINFO_H */
 |