mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-13 11:38:19 +00:00
faa3cc195d
- As suggested by Arseniy Zarche - Also updated confusables to Unicode 12
14 lines
321 B
C++
14 lines
321 B
C++
#include <base/system.h>
|
|
|
|
int main(int argc, const char **argv) // ignore_convention
|
|
{
|
|
dbg_logger_stdout();
|
|
if(argc < 1 + 2)
|
|
{
|
|
dbg_msg("usage", "%s STR1 STR2", argv[0] ? argv[0] : "unicode_confusables");
|
|
return -1;
|
|
}
|
|
dbg_msg("conf", "not_confusable=%d", str_utf8_comp_confusable(argv[1], argv[2]));
|
|
return 0;
|
|
}
|