blob: 944315035379cad4c01fd90875a789b026b0fc21 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/*-------------------------------------------------------------------------
*
* dbcommands.h
*
*
*
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
* Portions Copyright (c) 1994, Regents of the University of California
*
* $Id: dbcommands.h,v 1.13 2000/01/26 05:58:00 momjian Exp $
*
*-------------------------------------------------------------------------
*/
#ifndef DBCOMMANDS_H
#define DBCOMMANDS_H
extern void createdb(const char *dbname, const char *dbpath, int encoding);
extern void dropdb(const char *dbname);
#endif /* DBCOMMANDS_H */
|