home *** CD-ROM | disk | FTP | other *** search
/ rtsi.com / 2014.01.www.rtsi.com.tar / www.rtsi.com / OS9 / OSK / TELECOM / GNU_ATP_1_40.lzh / EDITLINE / sysdos.c < prev    next >
Text File  |  1993-05-01  |  327b  |  24 lines

  1. /*  $Revision: 1.1 $
  2. **
  3. **  MS-DOS system-dependant routines for editline library.
  4. */
  5. #include "editline.h"
  6.  
  7. void
  8. rl_ttyset(Reset)
  9.     int                Reset;
  10. {
  11. }
  12. ;
  13.  
  14. void
  15. rl_add_slash(path, p)
  16.     char    *path;
  17.     char    *p;
  18. {
  19.     struct stat    Sb;
  20.  
  21.     if (stat (path, &Sb) >= 0 )
  22.     (void)strcat( p, S_ISDIR (Sb.st_mode) ? SEPST : " ");
  23. }
  24.