Import ezmlm-idx 0.40
[ezmlm] / sub_std / opensql.c
CommitLineData
f8beb284
MW
1/*$Id: opensql.c,v 1.3 1999/10/12 23:38:36 lindberg Exp $*/
2/*$Name: ezmlm-idx-040 $*/
3#include "stralloc.h"
4#include "strerr.h"
5#include "errtxt.h"
6#include "subscribe.h"
7
8static stralloc myp = {0};
9static stralloc ers = {0};
10static stralloc fn = {0};
11static stralloc ourdb = {0};
12static char *ourtable = (char *) 0;
13
14char *opensql(dbname,table)
15char *dbname; /* database directory */
16char **table; /* table root_name */
17
18{
19 return 0;
20}
21
22void closesql()
23/* close connection to SQL server, if open */
24{
25 return;
26}
27