]> git.ipfire.org Git - thirdparty/squid.git/blobdiff - src/Packer.cc
SourceFormat Enforcement
[thirdparty/squid.git] / src / Packer.cc
index 4e50d1a5ad468c6c456d5a24a8e49a8c30caea26..541ef04b11b43f5aef387b0396f0bd612ef1e50f 100644 (file)
@@ -1,7 +1,5 @@
 
 /*
- * $Id$
- *
  * DEBUG: section 60    Packer: A uniform interface to store-like modules
  * AUTHOR: Alex Rousskov
  *
  *
  */
 
-
 /*
  * To-Do:
  */
 
-
 #include "squid.h"
-#include "Store.h"
 #include "MemBuf.h"
+#include "Store.h"
 
 /* local types */
 
@@ -111,7 +107,6 @@ storeEntryAppend(StoreEntry *e, const char *buf, int len)
     e->append(buf, len);
 }
 
-
 /* append()'s */
 static void (*const store_append) (StoreEntry *, const char *, int) = &storeEntryAppend;
 static void (*const memBuf_append) (MemBuf *, const char *, mb_size_t) = &memBufAppend;
@@ -120,7 +115,6 @@ static void (*const memBuf_append) (MemBuf *, const char *, mb_size_t) = &memBuf
 static void (*const store_vprintf) (StoreEntry *, const char *, va_list ap) = &storeAppendVPrintf;
 static void (*const memBuf_vprintf) (MemBuf *, const char *, va_list ap) = &memBufVPrintf;
 
-
 /* init/clean */
 
 /* init with this to forward data to StoreEntry */