Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nemequ/liblzf.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarc Lehmann <schmorpforge@schmorp.de>2012-12-11 00:21:28 +0400
committerMarc Lehmann <schmorpforge@schmorp.de>2012-12-11 00:21:28 +0400
commit5e2c66a3be3be596a83d5aeb74e4f9ba5411ecac (patch)
tree2a15fca07a5c28a6102b2d3b3b957e89d099b2df
parentb57d66b680e2bcbf8a3875d4b9571131c3a896d6 (diff)
ws
-rw-r--r--lzf.c8
-rw-r--r--lzf.h2
-rw-r--r--lzfP.h8
-rw-r--r--lzf_c_best.c8
-rw-r--r--lzf_d.c8
5 files changed, 17 insertions, 17 deletions
diff --git a/lzf.c b/lzf.c
index 423f286..a0eec14 100644
--- a/lzf.c
+++ b/lzf.c
@@ -1,17 +1,17 @@
/*
* Copyright (c) 2006 Stefan Traby <stefan@hello-penguin.com>
* Copyright (c) 2012 Marc Lehmann <schmorp@schmorp.de>
- *
+ *
* Redistribution and use in source and binary forms, with or without modifica-
* tion, are permitted provided that the following conditions are met:
- *
+ *
* 1. Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
- *
+ *
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
- *
+ *
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MER-
* CHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
diff --git a/lzf.h b/lzf.h
index 98e038f..f72d56d 100644
--- a/lzf.h
+++ b/lzf.h
@@ -55,7 +55,7 @@
*
* If the output buffer is not large enough or any error occurs return 0,
* otherwise return the number of bytes used, which might be considerably
- * more than in_len (but less than 104% of the original size), so it
+ * more than in_len (but less than 1 + 104% of the original size), so it
* makes sense to always use out_len == in_len - 1), to ensure _some_
* compression, and store the data uncompressed otherwise (with a flag, of
* course.
diff --git a/lzfP.h b/lzfP.h
index 123a0e9..1ed373e 100644
--- a/lzfP.h
+++ b/lzfP.h
@@ -1,16 +1,16 @@
/*
* Copyright (c) 2000-2007 Marc Alexander Lehmann <schmorp@schmorp.de>
- *
+ *
* Redistribution and use in source and binary forms, with or without modifica-
* tion, are permitted provided that the following conditions are met:
- *
+ *
* 1. Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
- *
+ *
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
- *
+ *
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MER-
* CHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
diff --git a/lzf_c_best.c b/lzf_c_best.c
index 6554a9c..fe523d2 100644
--- a/lzf_c_best.c
+++ b/lzf_c_best.c
@@ -1,16 +1,16 @@
/*
* Copyright (c) 2000-2012 Marc Alexander Lehmann <schmorp@schmorp.de>
- *
+ *
* Redistribution and use in source and binary forms, with or without modifica-
* tion, are permitted provided that the following conditions are met:
- *
+ *
* 1. Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
- *
+ *
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
- *
+ *
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MER-
* CHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
diff --git a/lzf_d.c b/lzf_d.c
index 8433b8f..ad2f730 100644
--- a/lzf_d.c
+++ b/lzf_d.c
@@ -1,16 +1,16 @@
/*
* Copyright (c) 2000-2010 Marc Alexander Lehmann <schmorp@schmorp.de>
- *
+ *
* Redistribution and use in source and binary forms, with or without modifica-
* tion, are permitted provided that the following conditions are met:
- *
+ *
* 1. Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
- *
+ *
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
- *
+ *
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MER-
* CHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO