add changelog
[platform/upstream/gdbm.git] / compat / dbmrdonly.c
1 /* dbmrdonly.c - Check to see if a database is read only, NDBM style. */
2
3 /* This file is part of GDBM, the GNU data base manager.
4    Copyright (C) 1993, 2007, 2011 Free Software Foundation, Inc.
5
6    GDBM is free software; you can redistribute it and/or modify
7    it under the terms of the GNU General Public License as published by
8    the Free Software Foundation; either version 3, or (at your option)
9    any later version.
10
11    GDBM is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14    GNU General Public License for more details.
15
16    You should have received a copy of the GNU General Public License
17    along with GDBM. If not, see <http://www.gnu.org/licenses/>.   */
18
19 /* Include system configuration before all else. */
20 #include "autoconf.h"
21 #include "ndbm.h"
22 #include "gdbmdefs.h"
23
24 /* not much of a routine, but should be a function for compatibility. */
25
26 int
27 dbm_rdonly (DBM *dbm)
28 {
29   return (dbm->file->read_write == GDBM_READER);
30 }