]> granicus.if.org Git - zziplib/commitdiff
internal
authorGuido Draheim <guidod@gmx.de>
Tue, 17 May 2005 10:18:02 +0000 (10:18 +0000)
committerGuido Draheim <guidod@gmx.de>
Tue, 17 May 2005 10:18:02 +0000 (10:18 +0000)
 (.)

zzip/__debug.h
zzip/__fnmatch.h
zzip/fseeko.c
zzip/fseeko.h
zzip/memdisk.c
zzip/memdisk.h
zzip/mmapped.c
zzip/mmapped.h

index 6b26f073638a96cc2fdf6ed9b69e95d179b43f41..13c7d895443d9b90f862651769bae74da921f091 100644 (file)
@@ -1,5 +1,6 @@
 #ifndef __ZZIP_INTERNAL_DEBUG_H
 #define __ZZIP_INTERNAL_DEBUG_H
+
 #include <zzip/conf.h>
 #include <zzip/__hints.h>
 
index 3456a56c8753a567fe6f872127868ff72f5acce2..9759a7423d8c22aaeee534223a61638bbc30e1ae 100644 (file)
@@ -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 <zzip/conf.h>
index 1f026e9058719d789c42ddcaedc44565629c060d..91c935f1b790e1b69a1571f673d6b2f0328c5a25 100644 (file)
@@ -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 
index 59ca576dac4d4b21369f5eff2dceef9368c7ce96..1145f467312361d2291fd6de3bfe5fd41313d8c9 100644 (file)
@@ -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: 
index 0f4714a3ad9d3c9a1f2b6d2a1c25d81c78efa0ed..57b0a155f84ecf7497e0df19dca2798380747990 100644 (file)
@@ -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
index b20fc0546c67f6560d6f089765ae58f9d62a964b..876981039d48d51b60a82bb4f84a42e75683dcd6 100644 (file)
@@ -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 <zzip/types.h>
 #include <zzip/mmapped.h>
 
index 76b6000c325e5aa9d1bf5421379b8c1bf976681c..24895b7f6157ec5a055adbc3bb42dbc4e97cec6b 100644 (file)
@@ -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 
index 47a750c59fdf6875bd1e71fc40d9d35ad140f999..7e228af9940db52d3c9e88fc21240fc7ac3ae301 100644 (file)
@@ -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: