Guest
Public paste!

Untitled

By: a guest | Mar 22nd, 2010 | Syntax: C | Size: 0.25 KB | Hits: 88 | Expires: Never
Copy text to clipboard
  1.                         do {
  2.                                 strnapp(token, c, bufflen);
  3.                                 c = nextCh();
  4.                         } while ((peekCh() >= 'a' && peekCh() <= 'z') ||
  5.                                          (peekCh() >= 'A' && peekCh() <= 'Z') ||
  6.                                          (peekCh() >= '0' && peekCh() <= '9'));
  7.  
  8.                         strnapp(token, c, bufflen); /** get last char **/