diff options
author | pixel <pixel> | 2004-11-27 21:44:44 +0000 |
---|---|---|
committer | pixel <pixel> | 2004-11-27 21:44:44 +0000 |
commit | d38e80ee04afe582e70150d3884e56c05f3fd7a8 (patch) | |
tree | f2627c50fa22aea89447e8406ac418eb68650d3d /MegamanX5/unarc.cpp | |
parent | 50f0dd331f8168fb5b2cd60c70178fad627b7fb6 (diff) |
Large dos2unix commit...
Diffstat (limited to 'MegamanX5/unarc.cpp')
-rw-r--r-- | MegamanX5/unarc.cpp | 80 |
1 files changed, 40 insertions, 40 deletions
diff --git a/MegamanX5/unarc.cpp b/MegamanX5/unarc.cpp index 098af51..ea5e498 100644 --- a/MegamanX5/unarc.cpp +++ b/MegamanX5/unarc.cpp @@ -1,40 +1,40 @@ -#include <stdlib.h>
-#include "generic.h"
-#include "Input.h"
-#include "Output.h"
-#include "Main.h"
-
-CODE_BEGINS
-virtual int startup() throw (GeneralException) {
- Handle * f, * o;
-
- int i = 0;
-
- f = new Input(argv[1]);
-
- int offset = 0;
- while (1) {
- int sector, size;
- f->seek(offset, SEEK_SET);
- f->read(§or, 4);
- f->read(&size, 4);
- offset += 8;
-
- if (!sector)
- break;
-
- f->seek(sector <<= 9, SEEK_SET);
-
- String fname;
- fname.set("unarc-%03i.out", i);
- o = new Output(fname);
- copy(f, o, size);
- delete o;
- i++;
- }
-
- delete f;
-
- return -1;
-}
-CODE_ENDS
+#include <stdlib.h> +#include "generic.h" +#include "Input.h" +#include "Output.h" +#include "Main.h" + +CODE_BEGINS +virtual int startup() throw (GeneralException) { + Handle * f, * o; + + int i = 0; + + f = new Input(argv[1]); + + int offset = 0; + while (1) { + int sector, size; + f->seek(offset, SEEK_SET); + f->read(§or, 4); + f->read(&size, 4); + offset += 8; + + if (!sector) + break; + + f->seek(sector <<= 9, SEEK_SET); + + String fname; + fname.set("unarc-%03i.out", i); + o = new Output(fname); + copy(f, o, size); + delete o; + i++; + } + + delete f; + + return -1; +} +CODE_ENDS |