what i want to do is to write my own string compare function because the built in doesnt work properly for me.

my two strings are:
Code:
char street_name[MAX][STR_MAX]
char comp_street_name[MAX][STR_MAX]
what i want to do is compare the word "Heidelberg" in 'street_name' to the various street names stored in 'comp_street_name' which is a dynamic array and is holding "Linden" in [0], "Heidelberg" in [1], etc.... until the end.

can anyone help me compare these dynamic arrays with or without the help of strcmp. some code examples would be great help.

thanx