home *** CD-ROM | disk | FTP | other *** search
/ Carousel Volume 2 #1 / carousel.iso / mactosh / lang / lsc30p4u.sit / stdver.c < prev    next >
Text File  |  1989-01-16  |  593b  |  23 lines

  1. /*
  2.     Routines for LightspeedC
  3.  
  4.     (C) Copyright 1986. THINK Technologies, Inc.  All rights reserved.
  5.  
  6. */
  7.  
  8. /* This module is purely for identification of the standard i/o release,
  9.     however, for those diehards who wanted it, it does contain a
  10.     perfectly usable function that returns a pointer to a string that
  11.     contains the version of standard i/o */
  12.     
  13. /* return the library version number of stdio */
  14.  
  15. #line 0 std_ver()
  16. char *std_ver()
  17. {
  18. static char STDIO_VERSION[] = "THINK C Libraries 3.01p4";
  19. static char copyright[] = "⌐ 1989 Symantec Corp.  All rights reserved.";
  20.  
  21.     return (STDIO_VERSION);
  22. }
  23.