From febc25b5beea4ef98af7a637a91a27e75d4f8177 Mon Sep 17 00:00:00 2001 From: Guido Draheim Date: Tue, 17 May 2005 10:18:02 +0000 Subject: [PATCH] internal (.) --- zzip/__debug.h | 1 + zzip/__fnmatch.h | 4 ++-- zzip/fseeko.c | 2 ++ zzip/fseeko.h | 2 ++ zzip/memdisk.c | 2 ++ zzip/memdisk.h | 2 ++ zzip/mmapped.c | 2 ++ zzip/mmapped.h | 2 ++ 8 files changed, 15 insertions(+), 2 deletions(-) diff --git a/zzip/__debug.h b/zzip/__debug.h index 6b26f07..13c7d89 100644 --- a/zzip/__debug.h +++ b/zzip/__debug.h @@ -1,5 +1,6 @@ #ifndef __ZZIP_INTERNAL_DEBUG_H #define __ZZIP_INTERNAL_DEBUG_H + #include #include diff --git a/zzip/__fnmatch.h b/zzip/__fnmatch.h index 3456a56..9759a74 100644 --- a/zzip/__fnmatch.h +++ b/zzip/__fnmatch.h @@ -1,5 +1,5 @@ -#ifndef __ZZIP__FNMATCH_H -#define __ZZIP__FNMATCH_H +#ifndef __ZZIP_INTERNAL_FNMATCH_H +#define __ZZIP_INTERNAL_FNMATCH_H /** included by fseeko.c, mmapped.c, memdisk.c */ #include diff --git a/zzip/fseeko.c b/zzip/fseeko.c index 1f026e9..91c935f 100644 --- a/zzip/fseeko.c +++ b/zzip/fseeko.c @@ -1,4 +1,6 @@ /* + * NOTE: this is part of libzzipfseeko (i.e. it is not libzzip). + * * These routines are fully independent from the traditional zzip * implementation. They assume a readonly seekable stdio handle * representing a complete zip file. The functions show how to diff --git a/zzip/fseeko.h b/zzip/fseeko.h index 59ca576..1145f46 100644 --- a/zzip/fseeko.h +++ b/zzip/fseeko.h @@ -1,6 +1,8 @@ #ifndef _ZZIP_FSEEKO_H_ #define _ZZIP_FSEEKO_H_ /* + * NOTE: this is part of libzzipfseeko (i.e. it is not libzzip). + * * simplified zip disk access using fseeko on a stdio FILE handle * * Author: diff --git a/zzip/memdisk.c b/zzip/memdisk.c index 0f4714a..57b0a15 100644 --- a/zzip/memdisk.c +++ b/zzip/memdisk.c @@ -1,4 +1,6 @@ /* + * NOTE: this is part of libzzipmmapped (i.e. it is not libzzip). + * * The mem_disk cache will parse the central information of a zip archive * and store it internally. One the one hand it allows to find files * faster - no disk access is required and endian conversion is not diff --git a/zzip/memdisk.h b/zzip/memdisk.h index b20fc05..8769810 100644 --- a/zzip/memdisk.h +++ b/zzip/memdisk.h @@ -1,6 +1,8 @@ #ifndef __ZZIP_MEMDISK_H #define __ZZIP_MEMDISK_H +/* NOTE: this is part of libzzipmmapped (i.e. it is not libzzip). */ + #include #include diff --git a/zzip/mmapped.c b/zzip/mmapped.c index 76b6000..24895b7 100644 --- a/zzip/mmapped.c +++ b/zzip/mmapped.c @@ -1,4 +1,6 @@ /* + * NOTE: this is part of libzzipmmapped (i.e. it is not libzzip). + * * These routines are fully independent from the traditional zzip * implementation. They assume a readonly mmapped sharedmem block * representing a complete zip file. The functions show how to diff --git a/zzip/mmapped.h b/zzip/mmapped.h index 47a750c..7e228af 100644 --- a/zzip/mmapped.h +++ b/zzip/mmapped.h @@ -1,6 +1,8 @@ #ifndef _ZZIP_MMAPPED_H_ #define _ZZIP_MMAPPED_H_ /* + * NOTE: this is part of libzzipmmapped (i.e. it is not libzzip). + * * simplified zip disk access using a mmapping of the whole archive. * * Author: -- 2.40.0