I'm attempting to create my owm C library, the first step is to create an unlinked object file, I have as the first line in my source program #include <ctype.h> followed by a host of user defined functions, many of which require string handling functions from the ctype.h library. But I am not getting a clean compile with the following syntax.<br>
cc -c stringer.c --> I end up with parse error before "char" , "len" undeclared (first use in this function), parse error at end of input, and etc. I think I may be missing a compiler direvtive or something!? any suggestions?
cc -c stringer.c --> I end up with parse error before "char" , "len" undeclared (first use in this function), parse error at end of input, and etc. I think I may be missing a compiler direvtive or something!? any suggestions?