/* ECP: FILEname=fig8_25.c */ /* 1*/ int /* 2*/ CountChars( const char *Str, char SearchChar ) /* 3*/ { /* 4*/ unsigned int Matches = 0; /* 5*/ if( Str != NULL ) /* 6*/ while( ( Str = Strchr( Str, SearchChar ) ) != NULL ) /* 7*/ { /* 8*/ Str++; /* 9*/ Matches++; /*10*/ } /*11*/ return Matches; /*12*/ }