blob: 3c27630067a4e36c29cd93764bd2ebebc69af1aa [file] [log] [blame]
Ambroise Vincent4128f9f2019-02-11 13:34:41 +00001/*
2 * Copyright (c) 2018, ARM Limited and Contributors. All rights reserved.
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7#include <string.h>
8
9size_t strlen(const char *s)
10{
11 const char *cursor = s;
12
13 while (*cursor)
14 cursor++;
15
16 return cursor - s;
17}