 b1376c7f39
			
		
	
	b1376c7f39
	
	
	
		
			
			git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@2128 ec53bebd-3082-4978-b11e-865c3cabbd6b
		
			
				
	
	
		
			16 lines
		
	
	
		
			256 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			256 B
		
	
	
	
		
			C
		
	
	
	
	
	
| /* $Id$ */
 | |
| 
 | |
| #ifndef __ERROR_H__
 | |
| #define __ERROR_H__
 | |
| 
 | |
| struct error_table {
 | |
|     char const * const * msgs;
 | |
|     long base;
 | |
|     int n_msgs;
 | |
|     struct error_table *next;
 | |
| };
 | |
| 
 | |
| const char *com_right(struct error_table *list, long code);
 | |
| 
 | |
| #endif /* __ERROR_H__ */
 |