chiark / gitweb /
tuntap: Do not build on non-Linux platforms.
[chiark-tcl.git] / cdb / lookup.c
index 4902295ed557aaab27c85dd289873a08498bd631..fb73f1f5f6b40864936049dd2e08f12b548bd017 100644 (file)
@@ -1,4 +1,20 @@
-/**/
+/*
+ * cdb, cdb-wr - Tcl bindings for tinycdb and a journalling write extension
+ * Copyright 2006-2012 Ian Jackson
+ *
+ * This program 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 of the
+ * License, or (at your option) any later version.
+ *
+ * This program 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 this library; if not, see <http://www.gnu.org/licenses/>.
+ */
 
 #include "chiark_tcl_cdb.h"
 
@@ -43,3 +59,7 @@ int cht_cdb_lookup_cdb(Tcl_Interp *ip, struct cdb *cdb,
   if (!*data_r) return cht_posixerr(ip, errno, "cdb_getdata failed");
   return TCL_OK;
 }
+
+CHT_INIT(cdb,
+        CHTI_OTHER(hbytes),
+        CHTI_COMMANDS(cht_cdbtoplevel_entries))