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

github.com/kornelski/7z.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '7zip/Compress/Rar29/Original/smallfn.cpp')
-rwxr-xr-x7zip/Compress/Rar29/Original/smallfn.cpp17
1 files changed, 0 insertions, 17 deletions
diff --git a/7zip/Compress/Rar29/Original/smallfn.cpp b/7zip/Compress/Rar29/Original/smallfn.cpp
deleted file mode 100755
index 094691f0..00000000
--- a/7zip/Compress/Rar29/Original/smallfn.cpp
+++ /dev/null
@@ -1,17 +0,0 @@
-#include "rar.hpp"
-
-int ToPercent(Int64 N1,Int64 N2)
-{
- if (N2==0)
- return(0);
- if (N2<N1)
- return(100);
- return(int64to32(N1*100/N2));
-}
-
-
-void RARInitData()
-{
- InitCRC();
- ErrHandler.Clean();
-}