4 * dos2unix '\n' convertor 0.5.0
5 * based on Unix2Dos 0.9.0 by Peter Hanecak (made 19.2.1997)
6 * Copyright 1997,.. by Peter Hanecak <hanecak@megaloman.sk>.
9 * dos2unix filters reading input from stdin and writing output to stdout.
10 * Without arguments it reverts the format (e.i. if source is in UNIX format,
11 * output is in DOS format and vice versa).
13 * This program is free software; you can redistribute it and/or
14 * modify it under the terms of the GNU General Public License
15 * as published by the Free Software Foundation; either version 2
16 * of the License, or (at your option) any later version.
18 * This program is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU General Public License for more details.
23 * You should have received a copy of the GNU General Public License
24 * along with this program; if not, write to the Free Software
25 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
27 * See the COPYING file for license information.
34 // if fn is NULL then input is stdin and output is stdout
35 static int convert(char *fn, int ConvType) {
38 FILE *in = stdin, *out = stdout;
41 if ((in = wfopen(fn, "r")) == NULL) {
44 if ((out = tmpfile()) == NULL) {
50 while ((c = fgetc(in)) != EOF) {
52 if ((ConvType == CT_UNIX2DOS) && (fn != NULL)) {
53 // file is alredy in DOS format so it is not necessery to touch it
54 if (fclose(in) < 0 || fclose(out) < 0) {
61 ConvType = CT_DOS2UNIX;
65 if ((ConvType == CT_DOS2UNIX) && (fn != NULL)) {
66 // file is alredy in UNIX format so it is not necessery to touch it
67 if ((fclose(in) < 0) || (fclose(out) < 0)) {
74 ConvType = CT_UNIX2DOS;
76 if (ConvType == CT_UNIX2DOS) {
85 while ((c = fgetc(in)) != EOF) {
89 if (ConvType == CT_UNIX2DOS)
98 if (fclose(in) < 0 || fclose(out) < 0 ||
99 (in = fopen(tempFn, "r")) == NULL || (out = fopen(fn, "w")) == NULL) {
104 while ((c = fgetc(in)) != EOF) {
108 if ((fclose(in) < 0) || (fclose(out) < 0)) {
117 int dos2unix_main(int argc, char *argv[]) {
118 int ConvType = CT_AUTO;
121 // process parameters
122 while ((o = getopt(argc, argv, "du")) != EOF) {
125 ConvType = CT_UNIX2DOS;
128 ConvType = CT_DOS2UNIX;
137 if ((o = convert(argv[optind++], ConvType)) < 0)
141 o = convert(NULL, ConvType);