icu_util.h 501 Bytes
Newer Older
1
// Copyright 2013 the V8 project authors. All rights reserved.
2 3
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
4 5 6 7 8 9 10


#ifndef V8_ICU_UTIL_H_
#define V8_ICU_UTIL_H_

namespace v8 {

11 12
namespace internal {

13 14
// Call this function to load ICU's data tables for the current process.  This
// function should be called before ICU is used.
15
bool InitializeICU(const char* icu_data_file);
16

17 18
}  // namespace internal
}  // namespace v8
19 20

#endif  // V8_ICU_UTIL_H_