/*-------------------------------------------------------------------------
 *
 * catalog.h--
 *    prototypes for functions in lib/catalog/catalog.c
 *
 *
 * Copyright (c) 1994, Regents of the University of California
 *
 * catalog.h,v 1.4 1995/08/01 20:17:33 jolly Exp
 *
 *-------------------------------------------------------------------------
 */
#ifndef CATALOG_H
#define CATALOG_H

#include "access/tupdesc.h"

extern char *relpath(char relname[]);
extern bool issystem(char relname[]);
extern bool NameIsSystemRelationName(Name name);
extern bool NameIsSharedSystemRelationName(Name relname);
extern Oid newoid(void);
extern void fillatt(TupleDesc att);

#endif	/* CATALOG_H */
