Linux ip-172-26-5-244 6.1.0-28-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.119-1 (2024-11-22) x86_64
Apache
: 172.26.5.244 | : 216.73.216.21
Cant Read [ /etc/named.conf ]
8.3.14
daemon
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
opt /
saltstack /
salt /
include /
[ HOME SHELL ]
Name
Size
Permission
Action
gssapi
[ DIR ]
drwxr-xr-x
gssrpc
[ DIR ]
drwxr-xr-x
kadm5
[ DIR ]
drwxr-xr-x
krb5
[ DIR ]
drwxr-xr-x
lzma
[ DIR ]
drwxr-xr-x
ncursesw
[ DIR ]
drwxr-xr-x
openssl
[ DIR ]
drwxr-xr-x
python3.10
[ DIR ]
drwxr-xr-x
readline
[ DIR ]
drwxr-xr-x
tirpc
[ DIR ]
drwxr-xr-x
uuid
[ DIR ]
drwxr-xr-x
bzlib.h
6.09
KB
-rw-r--r--
com_err.h
1.93
KB
-rw-r--r--
crypt.h
10.87
KB
-rw-r--r--
dbm.h
1.37
KB
-rw-r--r--
ffi.h
13.71
KB
-rw-r--r--
ffitarget.h
4.81
KB
-rw-r--r--
gdbm.h
11.9
KB
-rw-r--r--
gssapi.h
181
B
-rw-r--r--
kdb.h
62.75
KB
-rw-r--r--
krad.h
8.72
KB
-rw-r--r--
krb5.h
402
B
-rw-r--r--
lzma.h
9.72
KB
-rw-r--r--
ndbm.h
2.39
KB
-rw-r--r--
profile.h
11.89
KB
-rw-r--r--
sqlite3.h
625.79
KB
-rw-r--r--
sqlite3ext.h
37.25
KB
-rw-r--r--
verto-module.h
6.48
KB
-rw-r--r--
verto.h
18.98
KB
-rw-r--r--
xcrypt.h
2.46
KB
-rw-r--r--
zconf.h
16.08
KB
-rw-r--r--
zlib.h
94.56
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : dbm.h
/* dbm.h - The include file for dbm users. */ /* This file is part of GDBM, the GNU data base manager, by Philip A. Nelson. Copyright (C) 1990-2022 Free Software Foundation, Inc. GDBM is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. GDBM is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with GDBM. If not, see <http://www.gnu.org/licenses/>. You may contact the author by: e-mail: phil@cs.wwu.edu us-mail: Philip A. Nelson Computer Science Department Western Washington University Bellingham, WA 98226 *************************************************************************/ #include <gdbm.h> /* These are the routines in dbm. */ extern int dbminit (char *file); extern datum fetch (datum key); extern int store (datum key, datum content); extern int delete (datum key); extern datum firstkey (void); extern datum nextkey (datum key); extern int dbmclose (void);
Close