]> git.saurik.com Git - apple/icu.git/blame - icuSources/layoutex/Utilities.h
ICU-3.13.tar.gz
[apple/icu.git] / icuSources / layoutex / Utilities.h
CommitLineData
b75a7d8f
A
1/*
2 **********************************************************************
3 * Copyright (C) 2002, International Business Machines
4 * Corporation and others. All Rights Reserved.
5 **********************************************************************
6 */
7
8#ifndef __UTILITIES_H
9
10#define __UTILITIES_H
11
12#include "layout/LETypes.h"
13
14U_NAMESPACE_BEGIN
15
16class Utilities
17{
18public:
19 static le_int8 highBit(le_int32 value);
20 static le_int32 search(le_int32 value, const le_int32 array[], le_int32 count);
21 static void reverse(le_int32 array[], le_int32 count);
22 static void reverse(float array[], le_int32 count);
23};
24
25U_NAMESPACE_END
26#endif