mirror of
				https://github.com/postgres/postgres.git
				synced 2025-10-29 22:49:41 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			204 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			204 B
		
	
	
	
		
			C
		
	
	
	
	
	
| #ifndef __PARSER_H__
 | |
| #define __PARSER_H__
 | |
| 
 | |
| char	   *token;
 | |
| int			tokenlen;
 | |
| int			tsearch_yylex(void);
 | |
| void		start_parse_str(char *, int);
 | |
| void		start_parse_fh(FILE *, int);
 | |
| void		end_parse(void);
 | |
| 
 | |
| #endif
 |