blob: 90245d338a6bcb077b0713b40aa61e7ee80e4775 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/*-------------------------------------------------------------------------
*
* dbcommands.h
*
*
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: dbcommands.h,v 1.12 2000/01/13 18:26:16 petere 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 */
|