summaryrefslogtreecommitdiff
path: root/utils/win32/dos2unix.cpp
blob: 7010d0b166073c9f64eec5927fd7692bc139187b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#include <iostream>
#include <string>

#include <io.h>
#include <fcntl.h>

using namespace std;

int main( void )
{
	_setmode( _fileno( stdout ), _O_BINARY );
	
	string line;
	while( getline( cin, line ) ) {
		cout << line << "\n";
	}
	
	return 0;
}