/* File: slength.c Implementation of StringLength() */ #include #include "slength.h" int StringLength(char *str) { return strlen(str) ; }