blob: ca65bf11d933a0bd3a580808a3b359305bc8d823 [file] [log] [blame]
license.botf003cfe2008-08-24 09:55:55 +09001// Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
initial.commit3f4a7322008-07-27 06:49:38 +09004
5#ifndef BASE_ICU_UTIL_H__
6#define BASE_ICU_UTIL_H__
7
8namespace icu_util {
9
10// Call this function to load ICU's data tables for the current process. This
11// function should be called before ICU is used.
12bool Initialize();
13
14} // namespace icu_util
15
16#endif // BASE_ICU_UTIL_H__
license.botf003cfe2008-08-24 09:55:55 +090017