~ubuntu-branches/ubuntu/oneiric/bogofilter/oneiric

« back to all changes in this revision

Viewing changes to src/db_handle_props.h

  • Committer: Bazaar Package Importer
  • Author(s): Clint Adams
  • Date: 2004-06-27 09:22:31 UTC
  • Revision ID: james.westby@ubuntu.com-20040627092231-u26smic0nhp7rl4z
Tags: upstream-0.92.0
ImportĀ upstreamĀ versionĀ 0.92.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* $Id: db_handle_props.h,v 1.4 2003/09/17 13:04:43 m-a Exp $ */
 
2
 
 
3
/*****************************************************************************
 
4
 
 
5
NAME:
 
6
   db_handle_props.h -- fragments of code common to datastore_t?db.c
 
7
 
 
8
******************************************************************************/
 
9
 
 
10
/* Get the database filename */
 
11
char *db_handle_filename(void *vhandle){
 
12
  dbh_t *handle = vhandle;
 
13
  return handle->filename;
 
14
}
 
15