icu4c/source/extra/uconv/*.d
icu4c/source/extra/uconv/*.o
icu4c/source/extra/uconv/*.vcxproj.user
+icu4c/source/extra/uconv/.vs
icu4c/source/extra/uconv/Debug
icu4c/source/extra/uconv/Makefile
icu4c/source/extra/uconv/Release
icu4c/source/layoutex/*.o
icu4c/source/layoutex/*.pdb
icu4c/source/layoutex/*.vcxproj.user
+icu4c/source/layoutex/.vs
icu4c/source/layoutex/Debug
icu4c/source/layoutex/Makefile
icu4c/source/layoutex/Release
icu4c/source/tools/toolutil/x86
icu4c/source/tools/tzcode/*.ao
icu4c/source/tools/tzcode/*.o
+icu4c/source/tools/tzcode/.vs
icu4c/source/tools/tzcode/Makefile
icu4c/source/uconfig.h.prepend
icu4j/*.jar
u_fprintf(out, "u_strToLower(%S, turkish) -> %S\n", upper, buffer);
- /* ustring.h APIs, UChar * string case mapping with a Engish locale */
+ /* ustring.h APIs, UChar * string case mapping with a English locale */
/* result buffer = "ABI" latin CAPITAL letter A, latin capital letter B,
latin capital letter I */
length = u_strToUpper(buffer, sizeof(buffer)/sizeof(buffer[0]), upper,
"-lower Lower case first\n"
"-upper Upper case first\n"
"-case Enable separate case level\n"
- "-level n Sort level, 1 to 5, for Primary, Secndary, Tertiary, Quaternary, Identical\n"
+ "-level n Sort level, 1 to 5, for Primary, Secondary, Tertiary, Quaternary, Identical\n"
"-source string Source string for comparison\n"
"-target string Target string for comparison\n"
"Example coll -rules \\u0026b\\u003ca -source a -target b\n"
// ugrep - an ICU sample program illustrating the use of ICU Regular Expressions.
//
// The use of the ICU Regex API all occurs within the main()
-// function. The rest of the code deals with with opening files,
+// function. The rest of the code deals with opening files,
// encoding conversions, printing results, etc.
//
// This is not a full-featured grep program. The command line options
using namespace icu;
//
-// The following variables contain paramters that may be set from the command line.
+// The following variables contain parameters that may be set from the command line.
//
const char *pattern = NULL; // The regular expression
int firstFileNum; // argv index of the first file name
UBool matchFound = FALSE;
//
- // Process the commmand line options.
+ // Process the command line options.
//
processOptions(argc, argv);
// doOptions Run through the command line options, and set
// the global variables accordingly.
//
-// exit without returning if an error occured and
+// exit without returning if an error occurred and
// ugrep should not proceed further.
//
//------------------------------------------------------------------------------------------
//
// nextLine Advance the line index variables, starting at the
// specified position in the input file buffer, by
-// scanning forwrd until the next end-of-line.
+// scanning forward until the next end-of-line.
//
// Need to take into account all of the possible Unicode
// line ending sequences.