Help for this page

Select Code to Download


  1. or download this
    1458                     for (ptr = s+len-1; ptr >= s; ptr--)
    1459                         if (*ptr != 0 && !isSPACE(*ptr)) break;
    1460                     ptr++;
    
  2. or download this
    #define isSPACE(c) \
            ((c) == ' ' || (c) == '\t' || (c) == '\n' || (c) =='\r' || (c)
    + == '\f')