mirror of
				https://gitlab.labs.nic.cz/labs/bird.git
				synced 2024-05-11 16:54:54 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			405 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			405 B
		
	
	
	
		
			C
		
	
	
	
	
	
| /*
 | |
|  *	BIRD Client
 | |
|  *
 | |
|  *	(c) 1999--2000 Martin Mares <mj@ucw.cz>
 | |
|  *
 | |
|  *	Can be freely distributed and used under the terms of the GNU GPL.
 | |
|  */
 | |
| 
 | |
| /* client.c */
 | |
| 
 | |
| void cleanup(void);
 | |
| void input_start_list(void);
 | |
| void input_stop_list(void);
 | |
| 
 | |
| /* commands.c */
 | |
| 
 | |
| void cmd_build_tree(void);
 | |
| void cmd_help(char *cmd, int len);
 | |
| int cmd_complete(char *cmd, int len, char *buf, int again);
 | |
| char *cmd_expand(char *cmd);
 |