micro-utils/libmu/mu_strlen.h

7 lines
98 B
C
Raw Normal View History

2024-07-09 19:33:45 +00:00
#ifndef _MU_STRLEN
#define _MU_STRLEN
#include <stdio.h>
size_t mu_strlen(const char *s);
#endif