blob: 1d6f7bd154723c9beacccb79cda118e2b295047a [file] [log] [blame]
Soby Mathewb4c6df42022-11-09 11:13:29 +00001/*
2 * SPDX-License-Identifier: BSD-3-Clause
3 * SPDX-FileCopyrightText: Copyright TF-RMM Contributors.
4 */
5
6#include <string.h>
7
8size_t strlen(const char *s)
9{
10 const char *cursor = s;
11
12 while (*cursor) {
13 cursor++;
14 }
15
16 return cursor - s;
17}