-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathlf2cr.cpp
262 lines (235 loc) · 4.88 KB
/
lf2cr.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
# include <cstdlib>
# include <iostream>
# include <fstream>
# include <ctime>
# include <cstring>
using namespace std;
int main ( int argc, char *argv[] );
int handle ( string input_filename, string output_filename );
void timestamp ( );
//****************************************************************************80
int main ( int argc, char *argv[] )
//****************************************************************************80
//
// Purpose:
//
// LF2CR replaces linefeeds by carriage returns.
//
// Usage:
//
// lf2cr
// in which case the input and output files will be prompted for;
//
// lf2cr file1
// in which case the output file will be prompted for;
//
// lf2cr file1 file2
//
// Licensing:
//
// This code is distributed under the GNU LGPL license.
//
// Modified:
//
// 23 April 2010
//
// Author:
//
// John Burkardt
//
{
string input_filename;
string output_filename;
int result;
bool VERBOSE = false;
if ( VERBOSE )
{
timestamp ( );
cout << "\n";
cout << "LF2CR:\n";
cout << " C++ version\n";
cout << "\n";
cout << " Replace line feeds by carriage returns.\n";
cout << "\n";
cout << " Compiled on " << __DATE__ << " at " << __TIME__ << ".\n";
}
//
// If the input file was not on the command line, get it now.
//
if ( argc < 2 )
{
cout << "\n";
cout << "LF2CR:\n";
cout << " Please enter the INPUT file name:\n";
cin >> input_filename;
}
else
{
input_filename = argv[1];
}
//
// If the output file was not on the command line, get it now.
//
if ( argc < 3 )
{
cout << "\n";
cout << "LF2CR:\n";
cout << " Please enter the OUTPUT file name:\n";
cin >> output_filename;
}
else
{
output_filename = argv[2];
}
//
// Now we know the input and output file names, so go to it.
//
result = handle ( input_filename, output_filename );
if ( VERBOSE )
{
cout << "\n";
cout << "LF2CR:\n";
cout << " Normal end of execution.\n";
cout << "\n";
timestamp ( );
}
return result;
}
//****************************************************************************80
int handle ( string input_filename, string output_filename )
//****************************************************************************80
//
// Purpose:
//
// HANDLE makes a copy of a file in which LF's are replaced by LCRs.
//
// Licensing:
//
// This code is distributed under the GNU LGPL license.
//
// Modified:
//
// 23 April 2010
//
// Author:
//
// John Burkardt
//
// Parameters:
//
// Input, string INPUT_FILENAME, the name of the input file.
//
// Input, string OUTPUT_FILENAME, the name of the output file.
//
// Output, int HANDLE, is 0 for success, or 1 if there was an error.
//
{
char c;
ifstream input;
int input_char;
ofstream output;
int output_char;
int lf_num;
bool VERBOSE = false;
//
// Open the input and output files.
//
input.open ( input_filename.c_str ( ) );
if ( !input )
{
cout << "\n";
cout << "LF2CR - Fatal error!\n";
cout << " Cannot open the input file " << input_filename << ".\n";
return 1;
}
output.open ( output_filename.c_str ( ) );
if ( !output )
{
cout << "\n";
cout << "LF2CR - Fatal error!\n";
cout << " Cannot open the output file " << output_filename << ".\n";
return 1;
}
//
// Transfer characters from the input file to the output file.
//
input_char = 0;
output_char = 0;
lf_num = 0;
while ( 1 )
{
input.get ( c );
if ( input.eof ( ) )
{
break;
}
input_char = input_char + 1;
if ( c == '\n' )
{
lf_num = lf_num + 1;
output.put ( '\r' );
}
else
{
output.put ( c );
output_char = output_char + 1;
}
}
//
// Close the files.
//
input.close ( );
output.close ( );
//
// Report.
//
if ( VERBOSE )
{
cout << "\n";
cout << " The input file contains " << input_char << " characters.\n";
cout << " The input file contains " << lf_num << " line feeds.\n";
cout << " The output file contains " << output_char << " characters.\n";
}
return 0;
}
//****************************************************************************80
void timestamp ( )
//****************************************************************************80
//
// Purpose:
//
// TIMESTAMP prints the current YMDHMS date as a time stamp.
//
// Example:
//
// May 31 2001 09:45:54 AM
//
// Licensing:
//
// This code is distributed under the GNU LGPL license.
//
// Modified:
//
// 02 October 2003
//
// Author:
//
// John Burkardt
//
// Parameters:
//
// None
//
{
# define TIME_SIZE 40
static char time_buffer[TIME_SIZE];
const struct tm *tm;
size_t len;
time_t now;
now = time ( NULL );
tm = localtime ( &now );
len = strftime ( time_buffer, TIME_SIZE, "%d %B %Y %I:%M:%S %p", tm );
cout << time_buffer << "\n";
return;
# undef TIME_SIZE
}