]> git.ipfire.org Git - thirdparty/squid.git/blobdiff - lib/md5-test.c
SourceFormat Enforcement
[thirdparty/squid.git] / lib / md5-test.c
index 031d8e591d21a4c8725a6bd185eee422ca2886d7..52739744b69d46e2a8b61b6cda2c379973898e8a 100644 (file)
@@ -1,15 +1,13 @@
 /*
- * $Id$
+ * Copyright (C) 1996-2017 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.
  */
 
-/*
- * COMPILE WITH:
- *      gcc -Wall md5-test.c -I../include md5.o
- */
-
-#include "config.h"
+#include "squid.h"
 #include "md5.h"
-#include "stdio.h"
 
 static void MDPrint(unsigned char digest[16]);
 static void MDString(char *string);
@@ -45,10 +43,9 @@ main(int argc, char **argv)
     MDString("abc");
     MDString("message digest");
     MDString("abcdefghijklmnopqrstuvwxyz");
-    MDString
-    ("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789");
-    MDString
-    ("1234567890123456789012345678901234567890\
-1234567890123456789012345678901234567890");
+    MDString("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789");
+    MDString("1234567890123456789012345678901234567890"
+             "1234567890123456789012345678901234567890");
     return 0;
 }
+