/*-------------------------------------------------------------------------*/ /* mystring.h */ /*-------------------------------------------------------------------------*/ #ifndef MYSTRING_INCLUDED #define MYSTRING_INCLUDED #include size_t mystrlen(const char *pcString); /* Return the length of string pcString. */ /* Declare other functions here. */ #endif