/*-------------------------------------------------------------------------*/ /* mystring.c */ /*-------------------------------------------------------------------------*/ #include "mystring.h" size_t mystrlen(const char *pcString) /* Return the length of string pcString. */ { const char *pcStringEnd = pcString; while (*pcStringEnd) ++pcStringEnd; return pcStringEnd - pcString; } /* Define other functions here. */