]> git.ipfire.org Git - thirdparty/squid.git/blobdiff - lib/uudecode.c
SourceFormat Enforcement
[thirdparty/squid.git] / lib / uudecode.c
index fc342d9b24e577e6200215f97f86bb8d6666a2aa..cf63ce8d2a14359a999ee91b5cb1064065823148 100644 (file)
@@ -1,9 +1,13 @@
 /*
- * $Id$
+ * Copyright (C) 1996-2015 The Squid Software Foundation and contributors
+ *
+ * Squid software is distributed under GPLv2+ license and includes
+ * contributions from numerous individuals and organizations.
+ * Please see the COPYING and CONTRIBUTORS files for details.
  */
 
-#include "config.h"
-#include "util.h"
+#include "squid.h"
+#include "uudecode.h"
 
 /* aaaack but it's fast and const should make it shared text page. */
 const int pr2six[256] = {
@@ -66,3 +70,4 @@ uudecode(const char *bufcoded)
     bufplain[nbytesdecoded] = '\0';
     return bufplain;
 }
+