Use Unix line endings in wince_main.c too
The compiler needs to accept Unix line endings anyway, as this is what we use everywhere, and it makes things more consistent.
This commit is contained in:
parent
d73896581b
commit
fa1304a51d
1 changed files with 45 additions and 45 deletions
|
@ -1,46 +1,46 @@
|
||||||
/*
|
/*
|
||||||
* Windows CE console application entry point
|
* Windows CE console application entry point
|
||||||
*
|
*
|
||||||
* Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
|
* Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
|
||||||
*
|
*
|
||||||
* This file is part of mbed TLS (https://tls.mbed.org)
|
* This file is part of mbed TLS (https://tls.mbed.org)
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or modify
|
* This program is free software; you can redistribute it and/or modify
|
||||||
* it under the terms of the GNU General Public License as published by
|
* it under the terms of the GNU General Public License as published by
|
||||||
* the Free Software Foundation; either version 2 of the License, or
|
* the Free Software Foundation; either version 2 of the License, or
|
||||||
* (at your option) any later version.
|
* (at your option) any later version.
|
||||||
*
|
*
|
||||||
* This program is distributed in the hope that it will be useful,
|
* This program is distributed in the hope that it will be useful,
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
* GNU General Public License for more details.
|
* GNU General Public License for more details.
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU General Public License along
|
* You should have received a copy of the GNU General Public License along
|
||||||
* with this program; if not, write to the Free Software Foundation, Inc.,
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
||||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#if defined(_WIN32_WCE)
|
#if defined(_WIN32_WCE)
|
||||||
|
|
||||||
#include <windows.h>
|
#include <windows.h>
|
||||||
|
|
||||||
extern int main( int, const char ** );
|
extern int main( int, const char ** );
|
||||||
|
|
||||||
int _tmain( int argc, _TCHAR* targv[] )
|
int _tmain( int argc, _TCHAR* targv[] )
|
||||||
{
|
{
|
||||||
char **argv;
|
char **argv;
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
argv = ( char ** ) calloc( argc, sizeof( char * ) );
|
argv = ( char ** ) calloc( argc, sizeof( char * ) );
|
||||||
|
|
||||||
for ( i = 0; i < argc; i++ ) {
|
for ( i = 0; i < argc; i++ ) {
|
||||||
size_t len;
|
size_t len;
|
||||||
len = _tcslen( targv[i] ) + 1;
|
len = _tcslen( targv[i] ) + 1;
|
||||||
argv[i] = ( char * ) calloc( len, sizeof( char ) );
|
argv[i] = ( char * ) calloc( len, sizeof( char ) );
|
||||||
wcstombs( argv[i], targv[i], len );
|
wcstombs( argv[i], targv[i], len );
|
||||||
}
|
}
|
||||||
|
|
||||||
return main( argc, argv );
|
return main( argc, argv );
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif /* defined(_WIN32_WCE) */
|
#endif /* defined(_WIN32_WCE) */
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue