mirror of
				https://github.com/postgres/postgres.git
				synced 2025-11-03 09:13:20 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			25 lines
		
	
	
		
			336 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			336 B
		
	
	
	
		
			C
		
	
	
	
	
	
/* Glue file to use varbit before it is properly integrated with postgres */
 | 
						|
 | 
						|
#include "varbit.h"
 | 
						|
 | 
						|
bits8	   *varbit_in(char *s);
 | 
						|
char	   *varbit_out(bits8 *s);
 | 
						|
 | 
						|
bits8 *
 | 
						|
varbit_in(char *s)
 | 
						|
{
 | 
						|
	return varbitin(s, 0, -1);
 | 
						|
}
 | 
						|
 | 
						|
/*char *
 | 
						|
varbit_out (bits8 *s) {
 | 
						|
  return zpbitout(s);
 | 
						|
}
 | 
						|
*/
 | 
						|
 | 
						|
char *
 | 
						|
varbit_out(bits8 *s)
 | 
						|
{
 | 
						|
	return zpbitsout(s);
 | 
						|
}
 |