Can anyone point me to the definition of strlen() in GCC? I\'ve been grepping release 4.4.2 for about a half hour now (while Googling like crazy) and I can\'t seem
strlen()
You can use this code, the simpler the better !
size_t Strlen ( const char * _str ) { size_t i = 0; while(_str[i++]); return i; }