19 lines
400 B
C++
19 lines
400 B
C++
|
/********************************************************************
|
||
|
* COPYRIGHT:
|
||
|
* Copyright (C) 2008 IBM, Inc. All Rights Reserved.
|
||
|
*
|
||
|
********************************************************************/
|
||
|
/**
|
||
|
* This program tests string search performance.
|
||
|
* APIs tested:
|
||
|
* ICU4C
|
||
|
*/
|
||
|
|
||
|
#include "strsrchperf.h"
|
||
|
|
||
|
|
||
|
int main (int argc, char** argv) {
|
||
|
printf("Done!\n");
|
||
|
return 0;
|
||
|
}
|