1 // SPDX-License-Identifier: GPL-2.0
3 * Copied from linux/lib/string.c
5 * Copyright (C) 1991, 1992 Linus Torvalds
11 * strlen - Find the length of a string
12 * @s: The string to be sized
14 size_t test_strlen(const char *s
)
18 for (sc
= s
; *sc
!= '\0'; ++sc
)