1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
ash / quick_insert / quick_insert_transform_case.h [blame]
// Copyright 2024 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef ASH_QUICK_INSERT_QUICK_INSERT_TRANSFORM_CASE_H_
#define ASH_QUICK_INSERT_QUICK_INSERT_TRANSFORM_CASE_H_
#include <string>
#include <string_view>
#include "ash/ash_export.h"
namespace ash {
ASH_EXPORT std::u16string QuickInsertTransformToLowerCase(
std::u16string_view str);
ASH_EXPORT std::u16string QuickInsertTransformToUpperCase(
std::u16string_view str);
ASH_EXPORT std::u16string QuickInsertTransformToTitleCase(
std::u16string_view str);
} // namespace ash
#endif // ASH_QUICK_INSERT_QUICK_INSERT_TRANSFORM_CASE_H_