diff options
author | Eric Andersen <andersen@codepoet.org> | 2000-09-20 19:22:26 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2000-09-20 19:22:26 +0000 |
commit | cff3fe3ae9696584f0c4bdad6860e8d94d5e99f9 (patch) | |
tree | 11ccadd6495c9e4fbd920896e94935551af4c14d /coreutils/dos2unix.c | |
parent | 0cccdfaf363171c9f0761fbdb2028db0ea73e6b5 (diff) | |
download | busybox-w32-cff3fe3ae9696584f0c4bdad6860e8d94d5e99f9.tar.gz busybox-w32-cff3fe3ae9696584f0c4bdad6860e8d94d5e99f9.tar.bz2 busybox-w32-cff3fe3ae9696584f0c4bdad6860e8d94d5e99f9.zip |
Added dos2unix, unix2dos, and unrpm.c thanks to robotti@metconnect.com.
-Erik
Diffstat (limited to 'coreutils/dos2unix.c')
-rw-r--r-- | coreutils/dos2unix.c | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/coreutils/dos2unix.c b/coreutils/dos2unix.c new file mode 100644 index 000000000..9634687eb --- /dev/null +++ b/coreutils/dos2unix.c | |||
@@ -0,0 +1,45 @@ | |||
1 | /* | ||
2 | Mini dos2unix implementation for busybox | ||
3 | |||
4 | Copyright 1994,1995 Patrick Volkerding, Moorhead, Minnesota USA | ||
5 | All rights reserved. | ||
6 | |||
7 | Redistribution and use of this source code, with or without modification, is | ||
8 | permitted provided that the following condition is met: | ||
9 | |||
10 | 1. Redistributions of this source code must retain the above copyright | ||
11 | notice, this condition, and the following disclaimer. | ||
12 | |||
13 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED | ||
14 | WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF | ||
15 | MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO | ||
16 | EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | ||
17 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, | ||
18 | PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; | ||
19 | OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, | ||
20 | WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR | ||
21 | OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF | ||
22 | ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
23 | */ | ||
24 | |||
25 | #include "internal.h" | ||
26 | #include <stdio.h> | ||
27 | |||
28 | int dos2unix_main( int argc, char **argv ) { | ||
29 | int c; | ||
30 | if (argc > 1) { | ||
31 | c = *argv[1]; | ||
32 | if (c == '-') { | ||
33 | usage(dos2unix_usage); | ||
34 | } | ||
35 | } | ||
36 | c = getchar(); | ||
37 | while (c != EOF) { | ||
38 | /* Eat any \r's... they shouldn't be here */ | ||
39 | while (c == '\r') c = getchar(); | ||
40 | if (c == EOF) break; | ||
41 | putchar(c); | ||
42 | c = getchar(); | ||
43 | } | ||
44 | return 0; | ||
45 | } | ||