]> git.saurik.com Git - apple/icu.git/blobdiff - icuSources/test/perf/normperf/normperf.cpp
ICU-64232.0.1.tar.gz
[apple/icu.git] / icuSources / test / perf / normperf / normperf.cpp
index 3edfe4a0d435d1faeeaaf202e255fa1b8b3172e9..0cc65b5205c26f5597661e9a91530efd8213402f 100644 (file)
@@ -1,9 +1,13 @@
 /*
-**********************************************************************
-* Copyright (c) 2002-2003, International Business Machines
+***********************************************************************
+* © 2016 and later: Unicode, Inc. and others.
+* License & terms of use: http://www.unicode.org/copyright.html#License
+***********************************************************************
+***********************************************************************
+* Copyright (c) 2002-2016, International Business Machines
 * Corporation and others.  All Rights Reserved.
-**********************************************************************
-**********************************************************************
+***********************************************************************
+***********************************************************************
 */
 /** 
  * This Program tests the performance of ICU's Normalization engine against Windows
@@ -12,8 +16,9 @@
  * c:\normperf.exe -s C:\work\ICUCupertinoRep\icu4c\collation-perf-data  -i 10 -p 15 -f TestNames_Asian.txt -u -e UTF-8  -l
  */
 #include "normperf.h"
-
-#define LENGTHOF(array) (sizeof(array)/sizeof((array)[0]))
+#include "uoptions.h"
+#include "cmemory.h" // for UPRV_LENGTHOF
+#include <stdio.h>
 
 UPerfFunction* NormalizerPerformanceTest::runIndexedTest(int32_t index, UBool exec,const char* &name, char* par) {
     switch (index) {
@@ -130,7 +135,7 @@ NormalizerPerformanceTest::NormalizerPerformanceTest(int32_t argc, const char* a
         return;
     }
 
-    _remainingArgc = u_parseArgs(_remainingArgc, (char **)argv, (int32_t)(LENGTHOF(cmdLineOptions)), cmdLineOptions);
+    _remainingArgc = u_parseArgs(_remainingArgc, (char **)argv, UPRV_LENGTHOF(cmdLineOptions), cmdLineOptions);
     if(cmdLineOptions[0].doesOccur && cmdLineOptions[0].value!=NULL) {
         options=(int32_t)strtol(cmdLineOptions[0].value, NULL, 16);
     }