~vcs-imports/mammoth-replicator/trunk

« back to all changes in this revision

Viewing changes to contrib/string/string_io.h

  • Committer: alvherre
  • Date: 2005-12-16 21:24:52 UTC
  • Revision ID: svn-v4:db760fc0-0f08-0410-9d63-cc6633f64896:trunk:1
Initial import of the REL8_0_3 sources from the Pgsql CVS repository.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef STRING_IO_H
 
2
#define STRING_IO_H
 
3
 
 
4
unsigned char *string_output(unsigned char *data, int size);
 
5
unsigned char *string_input(unsigned char *str, int size, int hdrsize,
 
6
                         int *rtn_size);
 
7
unsigned char *c_charout(int32 c);
 
8
unsigned char *c_textout(struct varlena * vlena);
 
9
unsigned char *c_varcharout(unsigned char *s);
 
10
 
 
11
#if 0
 
12
struct varlena *c_textin(unsigned char *str);
 
13
int32 *
 
14
c_charin(unsigned char *str)
 
15
#endif
 
16
#endif
 
17
 
 
18
/*
 
19
 * Local Variables:
 
20
 *      tab-width: 4
 
21
 *      c-indent-level: 4
 
22
 *      c-basic-offset: 4
 
23
 * End:
 
24
 */