7
votes
11answers
3k views
Painless way to trim leading/trailing whitespace in C?
Is there a clean, preferably standard method of trimming leading and trailing whitespace from a string in C? I'd roll my own, but I would think this is a common problem with an equally common solut …
2
votes
The Definitive C Book Guide and List
"C Interfaces and Implementations" by David R. Hanson. It provides info on how to def …
0
votes
Mimic Python’s strip() function in C
I asked a very similar question long ago. See here; there are ways to do it both in-pla …
0
votes
double pointer and structures
Assuming all of the (struct somestruct *) pointers point to memory that's already been allocated, yes, it looks correct.
As for the error, what version of gcc are you using? I …
