home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / PROGRAMS / UTILS / HARDDISK / BADCLU.ZIP / INC.ZIP / VL.H < prev   
Encoding:
C/C++ Source or Header  |  1990-04-08  |  697 b   |  33 lines

  1. /**********************************************************************
  2.  *  
  3.  *  NAME:           vl.h
  4.  *  
  5.  *  DESCRIPTION:    prototypes for volume label funcs in vl.c
  6.  *  
  7.  *  M O D I F I C A T I O N   H I S T O R Y
  8.  *
  9.  *  when        who                 what
  10.  *  -------------------------------------------------------------------
  11.  *  04-07090    J. Alan Eldridge    created
  12.  *
  13.  *********************************************************************/
  14.  
  15. #ifndef __VL_H__
  16. #define __VL_H__
  17.  
  18. #ifndef NO_PROTO
  19.  
  20. void get_vl(
  21.     int     disk,
  22.     char    *label);
  23.     
  24. int set_vl(
  25.     int     disk,
  26.     char    *label);
  27.  
  28. #endif  /* NO_PROTO */
  29.  
  30. #endif  /* __VL_H__ */
  31.  
  32.  
  33.