blob: bd79a849a5095d4ba8a638a0a06893810b9e7d77 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
/* 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);
}
|