So far I have the prototype for a function, and I called it strsize.
int strsize ( char * str ) ;
now what I need to do is write a complete function called strsize which counts the number of characters in the string passed to it (excluding null) and returns the size to the caller.
And I cant use any library functions.
How In the hell am I supposed to do this?


