// 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_PICKER_PICKER_TRANSFORM_CASE_H_
#define ASH_PICKER_PICKER_TRANSFORM_CASE_H_
#include <string>
#include <string_view>
#include "ash/ash_export.h"
namespace ash {
ASH_EXPORT std::u16string PickerTransformToLowerCase(std::u16string_view str);
ASH_EXPORT std::u16string PickerTransformToUpperCase(std::u16string_view str);
ASH_EXPORT std::u16string PickerTransformToTitleCase(std::u16string_view str);
} // namespace ash
#endif // ASH_PICKER_PICKER_TRANSFORM_CASE_H_