From c8e5702127e507e82e6f68a4b8c546803accea9d Mon Sep 17 00:00:00 2001 From: Koen Kooi Date: Thu, 30 Jun 2005 08:19:37 +0000 Subject: import clean BK tree at cset 1.3670 --- packages/cdump/abiword-2.0.12/.mtn2git_empty | 0 packages/cdump/abiword-2.0.12/cdump.c | 110 +++++++++++++++++++++++++++ 2 files changed, 110 insertions(+) create mode 100644 packages/cdump/abiword-2.0.12/.mtn2git_empty (limited to 'packages/cdump/abiword-2.0.12') diff --git a/packages/cdump/abiword-2.0.12/.mtn2git_empty b/packages/cdump/abiword-2.0.12/.mtn2git_empty new file mode 100644 index 0000000000..e69de29bb2 diff --git a/packages/cdump/abiword-2.0.12/cdump.c b/packages/cdump/abiword-2.0.12/cdump.c index e69de29bb2..4089690222 100644 --- a/packages/cdump/abiword-2.0.12/cdump.c +++ b/packages/cdump/abiword-2.0.12/cdump.c @@ -0,0 +1,110 @@ +/* AbiSource Build Tools + * Copyright (C) 1998 AbiSource, Inc. + * + * 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 program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA + * 02111-1307, USA. + */ + +#include +#include + +long _getFileLength(const char* pszFileName) +{ + long iLengthOfFile; + + FILE* fp = fopen(pszFileName, "rb"); + if (!fp) + { + return -1; + } + + if (0 != fseek(fp, 0, SEEK_END)) + { + fclose(fp); + + return -1; + } + + iLengthOfFile = ftell(fp); + + fclose(fp); + + return iLengthOfFile; +} + +long _readEntireFile(const char* pszFileName, unsigned char* pBytes, unsigned long iLen) +{ + FILE* fp = fopen(pszFileName, "rb"); + + if (!fp) + { + return -1; + } + + if (iLen != fread(pBytes, 1, iLen, fp)) + { + fclose(fp); + + return -1; + } + + fclose(fp); + + return iLen; +} + +void _dumpHexCBytes(FILE* fp, const unsigned char* pBytes, long iLen) +{ + long i; + + for (i=0; i