Initial git repository build. I'm not bothering with the full history, even though we have it. We can create a separate "historical" git archive of that later if we want to, and in the meantime it's about 3.2GB when imported into git - space that would just make the early git days unnecessarily complicated, when we don't have a lot of good infrastructure for it. Let it rip!
		
			
				
	
	
		
			22 lines
		
	
	
	
		
			617 B
			
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
	
		
			617 B
			
		
	
	
	
		
			C
		
	
	
	
	
	
/*
 | 
						|
 * Interface to booleans in the security server. This is exported
 | 
						|
 * for the selinuxfs.
 | 
						|
 *
 | 
						|
 * Author: Karl MacMillan <kmacmillan@tresys.com>
 | 
						|
 *
 | 
						|
 * Copyright (C) 2003 - 2004 Tresys Technology, LLC
 | 
						|
 *	This program is free software; you can redistribute it and/or modify
 | 
						|
 *  	it under the terms of the GNU General Public License as published by
 | 
						|
 *	the Free Software Foundation, version 2.
 | 
						|
 */
 | 
						|
 | 
						|
#ifndef _SELINUX_CONDITIONAL_H_
 | 
						|
#define _SELINUX_CONDITIONAL_H_
 | 
						|
 | 
						|
int security_get_bools(int *len, char ***names, int **values);
 | 
						|
 | 
						|
int security_set_bools(int len, int *values);
 | 
						|
 | 
						|
int security_get_bool_value(int bool);
 | 
						|
 | 
						|
#endif
 |