blob: d3a96c9cea55c7c880a00bb0ac5b7b2f714f5169 [file] [log] [blame]
// Copyright 2023 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef BASE_ALLOCATOR_PARTITION_ALLOCATOR_SRC_PARTITION_ALLOC_PARTITION_ALLOC_BASE_STRINGS_STRING_UTIL_H_
#define BASE_ALLOCATOR_PARTITION_ALLOCATOR_SRC_PARTITION_ALLOC_PARTITION_ALLOC_BASE_STRINGS_STRING_UTIL_H_
#include "partition_alloc/partition_alloc_base/component_export.h"
namespace partition_alloc::internal::base::strings {
PA_COMPONENT_EXPORT(PARTITION_ALLOC_BASE)
const char* FindLastOf(const char* text, const char* characters);
PA_COMPONENT_EXPORT(PARTITION_ALLOC_BASE)
const char* FindLastNotOf(const char* text, const char* characters);
} // namespace partition_alloc::internal::base::strings
#endif // BASE_ALLOCATOR_PARTITION_ALLOCATOR_SRC_PARTITION_ALLOC_PARTITION_ALLOC_BASE_STRINGS_STRING_UTIL_H_