home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 191.lha / ARequester / trim.c < prev   
C/C++ Source or Header  |  1988-04-28  |  202b  |  19 lines

  1. #include <exec/types.h>
  2.  
  3. UBYTE *trim(str)
  4. REGS UBYTE *str;
  5. {
  6. REGS UBYTE *tmp;
  7.  
  8. tmp = str + strlen(str);
  9.  
  10. while( --tmp >= str )
  11.    {
  12.    if( *tmp != ' ')
  13.       break;
  14.    *tmp = '\0';
  15.    }
  16. return(str);
  17. }
  18.  
  19.