From 672c57c13fdaa8e1e7b752671034dc871f613a51 Mon Sep 17 00:00:00 2001 From: Heikki Levanto Date: Wed, 14 Jul 1999 13:14:47 +0000 Subject: [PATCH] Created empty --- isamc/merge-d.c | 52 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 isamc/merge-d.c diff --git a/isamc/merge-d.c b/isamc/merge-d.c new file mode 100644 index 0000000..47902e4 --- /dev/null +++ b/isamc/merge-d.c @@ -0,0 +1,52 @@ +/* + * Copyright (c) 1996-1998, Index Data. + * See the file LICENSE for details. + * Heikki Levanto + * + * merge-d.c: merge routines for isamd + * + */ + +#include +#include +#include +#include +#include +#include "isamd-p.h" + + +static char *hexdump(unsigned char *p, int len, char *buff) { + static char localbuff[128]; + char bytebuff[8]; + if (!buff) buff=localbuff; + *buff='\0'; + while (len--) { + sprintf(bytebuff,"%02x",*p); + p++; + strcat(buff,bytebuff); + if (len) strcat(buff,","); + } + return buff; +} + + +/* isamd - heikki's append-only isam +*/ + + + +ISAMD_P isamd_append (ISAMD is, ISAMD_P ipos, ISAMD_I data) +{ + +} /* isamh_append */ + + +/* + * $Log: merge-d.c,v $ + * Revision 1.1 1999-07-14 13:14:47 heikki + * Created empty + * + * + */ + + -- 1.7.10.4