I'm using a macro and I think it works fine -
#define CStrNullLastNL(str) {char* nl=strrchr(str,'\n'); if(nl){*nl=0;}}
So it works to zero out the last newline in a string, really its used to chop off the linebreak when it gets left on by fgets.
So, I'm wondering if I can "return" a value from the macro, so it can be called like
func( CStrNullLastNL( cstr ) ) ;
Or will I have to write a function
strtok(str, "\n"). While it's not whatstrtok()was really designed for, it does the job perfectly (in fact, it's one of the few good uses forstrtok()). In C++ you should just usestd::getline()instead offgets()though. – Jerry Coffin Apr 20 '10 at 22:40fgetsonly reads one line, so the first is also the last (and always the last character in the string, if it's present at all). If you were using in some completely different situation, where you might have more than one, then yes, it would stop at the first. – Jerry Coffin Apr 20 '10 at 22:57\nis either the last character of the string or not present, then you don't need anything fancier thanstrlen(). – Mike DeSimone Apr 20 '10 at 23:52