diff options
| author | 2023-08-23 23:04:57 +0000 | |
|---|---|---|
| committer | 2023-08-23 23:04:57 +0000 | |
| commit | 189cc5941bafa17bb8079dd0fa02535cfe2358ef (patch) | |
| tree | 8e452d0cc7be1a87721f29e9de36962e486cce50 /tools/aapt/Utils.h | |
| parent | 7adaa2d7f2fe39099638b736df83631988a6a0d8 (diff) | |
| parent | c623d60534abf5ae72a3d531a487598134896207 (diff) | |
Merge "Move convertToResPath from libutils to aapt." into main am: 0637b02cd6 am: ca6f087594 am: 5e49797a2d am: c623d60534
Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/2721353
Change-Id: I70d3231bf180a77d3992df0f64bc36283b3d7125
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
Diffstat (limited to 'tools/aapt/Utils.h')
| -rw-r--r-- | tools/aapt/Utils.h | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/tools/aapt/Utils.h b/tools/aapt/Utils.h new file mode 100644 index 000000000000..8eb594138478 --- /dev/null +++ b/tools/aapt/Utils.h @@ -0,0 +1,28 @@ +/* + * Copyright (C) 2005 The Android Open Source Project + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +#pragma once + +// This file contains cruft that used to be in libutils' String8, that's only +// used for aapt. + +#include <utils/String8.h> + +// Converts all separators in this string to /, the default path +// separator. +// If the default OS separator is backslash, this converts all +// backslashes to slashes, in-place. Otherwise it does nothing. +void convertToResPath(android::String8&); |