[CMDUTILS][FC] Initial implement FC command (#3622)

Implement FC (file comparison) command. As a starting point, we support binary mode comparison at first. Text mode comparison and wildcard are not supported yet. CORE-17500
This commit is contained in:
Katayama Hirofumi MZ 2021-04-25 13:06:13 +09:00 committed by GitHub
parent db269c85e6
commit 8bf471105e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 570 additions and 0 deletions

View file

@ -0,0 +1,13 @@
#define IDS_USAGE 1000
#define IDS_NO_DIFFERENCE 1001
#define IDS_LONGER_THAN 1002
#define IDS_COMPARING 1003
#define IDS_OUT_OF_MEMORY 1004
#define IDS_CANNOT_READ 1005
#define IDS_INVALID_SWITCH 1006
#define IDS_CANNOT_OPEN 1007
#define IDS_NEEDS_FILES 1008
#define IDS_CANT_USE_WILDCARD 1009
#define IDS_DIFFERENT 1010
#define IDS_TOO_LARGE 1011
#define IDS_RESYNCH_FAILED 1012