blob: 8120635b85fe3982377122631c061fc50bb6497a [file] [log] [blame]
// Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef Encoding_h
#define Encoding_h
#include "platform/wtf/text/Unicode.h"
namespace blink {
namespace Encoding {
// The Encoding Standard has a definition of whitespace that differs from
// WTF::isWhiteSpace() (it excludes vertical tab).
bool IsASCIIWhiteSpace(UChar);
} // namespace Encoding
} // namespace blink
#endif // Encoding_h