From b06a2da1188043774a21f325c65893b1dd1937ba Mon Sep 17 00:00:00 2001 From: phk Date: Wed, 10 May 1995 05:57:04 +0000 Subject: Create_Chunk_DWIM() is here, though it doesn't quite do what the name implies. --- lib/libdisk/tst01.c | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) (limited to 'lib/libdisk/tst01.c') diff --git a/lib/libdisk/tst01.c b/lib/libdisk/tst01.c index 6670963..b32253a 100644 --- a/lib/libdisk/tst01.c +++ b/lib/libdisk/tst01.c @@ -6,7 +6,7 @@ * this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp * ---------------------------------------------------------------------------- * - * $Id: tst01.c,v 1.9 1995/05/03 17:38:00 jkh Exp $ + * $Id: tst01.c,v 1.10 1995/05/04 07:00:56 phk Exp $ * */ @@ -168,6 +168,16 @@ main(int argc, char **argv) if (!strcasecmp(*cmds,"exit")) { break; } if (!strcasecmp(*cmds,"q")) { break; } if (!strcasecmp(*cmds,"x")) { break; } + if (!strcasecmp(*cmds,"dwim") && ncmd == 6) { + printf("dwim = %p\n", + Create_Chunk_DWIM(d, + (struct chunk *)strtol(cmds[1],0,0)), + strtol(cmds[2],0,0), + strtol(cmds[3],0,0), + strtol(cmds[4],0,0), + strtol(cmds[5],0,0) ); + continue; + } if (!strcasecmp(*cmds,"delete") && ncmd == 2) { printf("delete = %d\n", Delete_Chunk(d, -- cgit v1.1