]> granicus.if.org Git - postgresql/blob - src/include/catalog/catalog.h
Included all yacc and lex files into the distribution.
[postgresql] / src / include / catalog / catalog.h
1 /*-------------------------------------------------------------------------
2  *
3  * catalog.h
4  *        prototypes for functions in lib/catalog/catalog.c
5  *
6  *
7  * Copyright (c) 1994, Regents of the University of California
8  *
9  * $Id: catalog.h,v 1.9 2000/01/16 20:04:57 petere Exp $
10  *
11  *-------------------------------------------------------------------------
12  */
13 #ifndef CATALOG_H
14 #define CATALOG_H
15
16 #include "access/tupdesc.h"
17
18 extern char *relpath(const char *relname);
19 extern bool IsSystemRelationName(const char *relname);
20 extern bool IsSharedSystemRelationName(const char *relname);
21 extern Oid      newoid(void);
22 extern void fillatt(TupleDesc att);
23
24 #endif   /* CATALOG_H */