blob: e4b79d9f6496c608b99b1a20988d3c1ee7aa78b2 [file] [log] [blame]
Antonio Nino Diaz1b465f82018-08-13 19:51:26 +01001/*
Govindraj Rajaeee28e72023-08-01 15:52:40 -05002 * Copyright (c) 2018, Arm Limited and Contributors. All rights reserved.
Antonio Nino Diaz1b465f82018-08-13 19:51:26 +01003 *
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}