string-case.h 463 Bytes
Newer Older
1 2 3 4
// Copyright 2016 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

5 6
#ifndef V8_STRINGS_STRING_CASE_H_
#define V8_STRINGS_STRING_CASE_H_
7 8 9 10 11 12 13 14 15 16

namespace v8 {
namespace internal {

template <bool is_lower>
int FastAsciiConvert(char* dst, const char* src, int length, bool* changed_out);

}  // namespace internal
}  // namespace v8

17
#endif  // V8_STRINGS_STRING_CASE_H_