home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-387-Vol-3of3.iso / b / bmh02src.zip / NAME.H < prev    next >
C/C++ Source or Header  |  1992-08-08  |  326b  |  19 lines

  1. /*
  2.    name.h : Copyright Paul Healy, EI9GL, 1992.
  3.  
  4.    920808 : Created
  5. */
  6. #ifndef _name_h_
  7. #define _name_h_
  8.  
  9. typedef enum {
  10.       BaseName,    /* no extension */
  11.       NewName,     /* .new */
  12.       OldName,     /* .old */
  13.       TxtName,     /* .txt */
  14.       last_name
  15.    } Name;
  16.  
  17. char *getnm(Name n);
  18. #endif
  19.