[CRT] Remove useless #undef abort from process.h
[reactos.git] / modules / rosapps / applications / devutils / txt2nls / main.c
1 /*
2 * PROJECT: ReactOS TXT to NLS Converter
3 * LICENSE: GNU General Public License Version 2.0 or any later version
4 * FILE: devutils/txt2nls/main.c
5 * COPYRIGHT: Copyright 2016 Dmitry Chapyshev <dmitry@reactos.org>
6 */
7
8 #include "precomp.h"
9
10 int main(int argc, char* argv[])
11 {
12 if (argc != 3)
13 return 1;
14
15 if (!nls_from_txt(argv[1], argv[2]))
16 return 1;
17
18 return 0;
19 }