]> granicus.if.org Git - postgresql/blob - src/include/access/printtup.h
Another PGINDENT run that changes variable indenting and case label indenting. Also...
[postgresql] / src / include / access / printtup.h
1 /*-------------------------------------------------------------------------
2  *
3  * printtup.h--
4  *
5  *
6  *
7  * Copyright (c) 1994, Regents of the University of California
8  *
9  * $Id: printtup.h,v 1.4 1997/09/08 02:34:19 momjian Exp $
10  *
11  *-------------------------------------------------------------------------
12  */
13 #ifndef PRINTTUP_H
14 #define PRINTTUP_H
15
16 #include <access/htup.h>
17 #include <access/tupdesc.h>
18
19 extern Oid      typtoout(Oid type);
20 extern void printtup(HeapTuple tuple, TupleDesc typeinfo);
21 extern void showatts(char *name, TupleDesc attinfo);
22 extern void debugtup(HeapTuple tuple, TupleDesc typeinfo);
23 extern void printtup_internal(HeapTuple tuple, TupleDesc typeinfo);
24 extern Oid      gettypelem(Oid type);
25
26 #endif                                                  /* PRINTTUP_H */