home *** CD-ROM | disk | FTP | other *** search
/ The CDPD Public Domain Collection for CDTV 4 / CDPD_IV.bin / networking / dnet / dnet2.3.2 / amiga / lib / version.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-06-29  |  300 b   |  21 lines

  1.  
  2. /*
  3.  *  Version.C
  4.  */
  5.  
  6. #include "lib.h"
  7.  
  8. void
  9. Version(name, ver, subver)
  10. char *name;
  11. char *ver;
  12. char *subver;
  13. {
  14.     Write(Output(), name, strlen(name));
  15.     Write(Output(), " V", 2);
  16.     Write(Output(), ver, strlen(ver));
  17.     Write(Output(), subver, strlen(subver));
  18.     Write(Output(), "\n", 1);
  19. }
  20.  
  21.