micro-utils/libmu/mu_strlen.h
2024-07-09 22:33:45 +03:00

7 lines
98 B
C

#ifndef _MU_STRLEN
#define _MU_STRLEN
#include <stdio.h>
size_t mu_strlen(const char *s);
#endif