home *** CD-ROM | disk | FTP | other *** search
/ RISC DISC 1 / RISC_DISC_1.iso / pd_share / code / oslib / Examples / p2-099 < prev    next >
Encoding:
Text File  |  1994-03-30  |  223 b   |  13 lines

  1. #include "osfscontrol.h"
  2.  
  3. char *fts (int fti)
  4.  
  5. {  static char file_type [9];
  6.  
  7.    osfscontrol_read_file_type (fti,
  8.          (bits *) &file_type [0], (bits *) &file_type [4]);
  9.    file_type [8] = '\0';
  10.  
  11.    return file_type;
  12. }
  13.