Changed multi-line C comments into another style.

The left side doesn't look unbalanced.
This commit is contained in:
Greg King
2014-06-30 05:10:35 -04:00
parent 132d57f1ad
commit 0390c34e88
502 changed files with 8869 additions and 8884 deletions

View File

@@ -1,11 +1,11 @@
/*
* Compresses data to the DEFLATE format.
* The compressed data is ready to use with inflatemem().
* Compile using e.g.
* gcc -O2 -o deflater deflater.c -lz
*
* Author: Piotr Fusik <fox@scene.pl>
*/
** Compresses data to the DEFLATE format.
** The compressed data is ready to use with inflatemem().
** Compile using e.g.
** gcc -O2 -o deflater deflater.c -lz
**
** Author: Piotr Fusik <fox@scene.pl>
*/
#include <stdio.h>
#include <stdlib.h>
#include <zlib.h>