mirror of
https://github.com/AntonioND/architectds.git
synced 2025-06-18 16:45:32 -04:00
11 lines
182 B
C
11 lines
182 B
C
// SPDX-License-Identifier: CC0-1.0
|
|
//
|
|
// SPDX-FileContributor: Antonio Niño Díaz, 2023
|
|
|
|
#ifndef COMMON_H__
|
|
#define COMMON_H__
|
|
|
|
int my_strlen(const char *s);
|
|
|
|
#endif // COMMON_H__
|