1// Copyright (c) 2009 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.
4
5// This code is not actually used, it was copied here for the reference only.
6// See cld_htmlutils_windows.cc for Windows version of this code.
7
8#include "i18n/encodings/compact_lang_det/cld_unilib.h"
9
10#include "util/utf8/unilib.h"
11
12namespace cld_UniLib {
13
14int OneCharLen(const char* src) {
15  return UniLib::OneCharLen(src);
16}
17
18}  // namespace cld_UniLib
19