Advertisement
alex1984vn

Remove space end of line

Aug 10th, 2011
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.08 KB | None | 0 0
  1. void chomp(char *s) {
  2.     while(*s && *s != '\n' && *s != '\r') s++;
  3.  
  4.     *s = 0;
  5. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement