mirror of
https://github.com/AntonioND/architectds.git
synced 2025-06-18 16:45:32 -04:00
11 lines
167 B
C
11 lines
167 B
C
// SPDX-License-Identifier: CC0-1.0
|
|
//
|
|
// SPDX-FileContributor: Antonio Niño Díaz, 2023
|
|
|
|
#include <string.h>
|
|
|
|
int my_strlen(const char *s)
|
|
{
|
|
return strlen(s);
|
|
}
|