diff options
author | Eric Andersen | 2001-07-25 07:22:55 +0000 |
---|---|---|
committer | Eric Andersen | 2001-07-25 07:22:55 +0000 |
commit | 655584b07a4b7a1d792c37f7edf1f3467ab803e7 (patch) | |
tree | cd4e81726596669f4160754371e954024757713c /unix2dos.c | |
parent | 6c7ac21f3a44ccf4a75ce413404726b327691724 (diff) | |
download | busybox-655584b07a4b7a1d792c37f7edf1f3467ab803e7.zip busybox-655584b07a4b7a1d792c37f7edf1f3467ab803e7.tar.gz |
This fixes dos2unix and unix2dos so they behave as expected. dos2unix
was broken in the 0.52 release, and unix2dos was pretty lame...
-Erik
Diffstat (limited to 'unix2dos.c')
-rw-r--r-- | unix2dos.c | 49 |
1 files changed, 0 insertions, 49 deletions
diff --git a/unix2dos.c b/unix2dos.c deleted file mode 100644 index 37da9a9..0000000 --- a/unix2dos.c +++ /dev/null @@ -1,49 +0,0 @@ -/* - Mini unix2dos implementation for busybox - - Copyright 1994,1995 Patrick Volkerding, Moorhead, Minnesota USA - All rights reserved. - - Redistribution and use of this source code, with or without modification, is - permitted provided that the following condition is met: - - 1. Redistributions of this source code must retain the above copyright - notice, this condition, and the following disclaimer. - - THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF - MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO - EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, - PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; - OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, - WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF - ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -*/ - -#include "busybox.h" -#include <stdio.h> - -int unix2dos_main( int argc, char **argv ) { - int c; - if (argc > 1) { - c = *argv[1]; - if (c == '-') { - show_usage(); - } - } - c = getchar(); - while (c != EOF) { - /* Eat any \r's... they shouldn't be here */ - while (c == '\r') c = getchar(); - if (c == EOF) break; - if (c != '\n') { - putchar(c); - } else { - printf("\r\n"); - } - c = getchar(); - } - return 0; -} |