Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(83)

Side by Side Diff: source/test/letest/letest.h

Issue 845603002: Update ICU to 54.1 step 1 (Closed) Base URL: https://chromium.googlesource.com/chromium/deps/icu.git@master
Patch Set: remove unusued directories Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « source/test/letest/gendata.xml ('k') | source/test/letest/letest.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 ******************************************************************************* 2 *******************************************************************************
3 * 3 *
4 * Copyright (C) 1999-2011, International Business Machines 4 * Copyright (C) 1999-2014, International Business Machines
5 * Corporation and others. All Rights Reserved. 5 * Corporation and others. All Rights Reserved.
6 * 6 *
7 ******************************************************************************* 7 *******************************************************************************
8 * file name: letest.h 8 * file name: letest.h
9 * 9 *
10 * created on: 11/06/2000 10 * created on: 11/06/2000
11 * created by: Eric R. Mader 11 * created by: Eric R. Mader
12 */ 12 */
13 13
14 #ifndef __LETEST_H 14 #ifndef __LETEST_H
15 #define __LETEST_H 15 #define __LETEST_H
16 16
17
18 #ifdef USING_ICULEHB
19 #include "layout/LETypes.h"
20 #else
17 #include "LETypes.h" 21 #include "LETypes.h"
22 #endif
18 #include "unicode/ctest.h" 23 #include "unicode/ctest.h"
19 24
20 #include <stdlib.h> 25 #include <stdlib.h>
21 #include <string.h> 26 #include <string.h>
22 27
23 U_NAMESPACE_USE 28 U_NAMESPACE_USE
24 29
25 #define ARRAY_SIZE(array) (sizeof array / sizeof array[0]) 30 #define ARRAY_SIZE(array) (sizeof array / sizeof array[0])
26 31
27 #define ARRAY_COPY(dst, src, count) memcpy((void *) (dst), (void *) (src), (coun t) * sizeof (src)[0]) 32 #define ARRAY_COPY(dst, src, count) memcpy((void *) (dst), (void *) (src), (coun t) * sizeof (src)[0])
(...skipping 12 matching lines...) Expand all
40 float *positions; 45 float *positions;
41 }; 46 };
42 47
43 #ifndef __cplusplus 48 #ifndef __cplusplus
44 typedef struct TestResult TestResult; 49 typedef struct TestResult TestResult;
45 #endif 50 #endif
46 51
47 U_CFUNC void addCTests(TestNode **root); 52 U_CFUNC void addCTests(TestNode **root);
48 53
49 #endif 54 #endif
OLDNEW
« no previous file with comments | « source/test/letest/gendata.xml ('k') | source/test/letest/letest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698