diff --git a/icu4c/source/extra/Makefile.in b/icu4c/source/extra/Makefile.in index 4dd2818bdb9..2e48dba73d7 100644 --- a/icu4c/source/extra/Makefile.in +++ b/icu4c/source/extra/Makefile.in @@ -23,7 +23,7 @@ subdir = extra ## Files to remove for 'make clean' CLEANFILES = *~ -SUBDIRS = uconv +SUBDIRS = scrptrun uconv ## List of phony targets .PHONY : all all-local all-recursive install install-local \ diff --git a/icu4c/source/extra/scrptrun/scrptrun.cpp b/icu4c/source/extra/scrptrun/scrptrun.cpp index d36ec614c46..0a438c316a6 100644 --- a/icu4c/source/extra/scrptrun/scrptrun.cpp +++ b/icu4c/source/extra/scrptrun/scrptrun.cpp @@ -19,6 +19,8 @@ #include "cmemory.h" #include "scrptrun.h" +U_NAMESPACE_BEGIN + const char ScriptRun::fgClassID=0; UChar32 ScriptRun::pairedChars[] = { @@ -201,3 +203,4 @@ UBool ScriptRun::next() return true; } +U_NAMESPACE_END diff --git a/icu4c/source/extra/scrptrun/scrptrun.h b/icu4c/source/extra/scrptrun/scrptrun.h index 0ef5df24bbf..ac6bfe327e8 100644 --- a/icu4c/source/extra/scrptrun/scrptrun.h +++ b/icu4c/source/extra/scrptrun/scrptrun.h @@ -20,6 +20,8 @@ #include "unicode/uobject.h" #include "unicode/uscript.h" +U_NAMESPACE_BEGIN + struct ScriptRecord { UChar32 startChar; @@ -152,5 +154,6 @@ inline void ScriptRun::reset(const UChar chars[], int32_t start, int32_t length) reset(start, length); } +U_NAMESPACE_END #endif diff --git a/icu4c/source/extra/scrptrun/srtest.cpp b/icu4c/source/extra/scrptrun/srtest.cpp index 5792071ff0f..8d59fb9ef6a 100644 --- a/icu4c/source/extra/scrptrun/srtest.cpp +++ b/icu4c/source/extra/scrptrun/srtest.cpp @@ -27,9 +27,9 @@ UChar testChars[] = { int32_t testLength = UPRV_LENGTHOF(testChars); -void main() +int main() { - ScriptRun scriptRun(testChars, 0, testLength); + icu::ScriptRun scriptRun(testChars, 0, testLength); while (scriptRun.next()) { int32_t start = scriptRun.getScriptStart(); @@ -38,4 +38,5 @@ void main() printf("Script '%s' from %d to %d.\n", uscript_getName(code), start, end); } + return 0; }