home *** CD-ROM | disk | FTP | other *** search
/ PD Collection CD 1 / PD Collection CD 1.iso / programer2 / sdls / Tutorials_ClientEx_c_clientEx < prev    next >
Encoding:
Text File  |  1995-03-08  |  280 b   |  22 lines

  1. /*
  2.  * clientEx.c
  3.  *
  4.  * Example of a DLL client application
  5.  */
  6.  
  7. #include <stdio.h>
  8. #include "dllExample.h"
  9.  
  10. int main(void)
  11. {
  12.   /* --- Display a friendly greeting --- */
  13.  
  14.   hello();
  15.  
  16.   /* --- Tell the user what the time is --- */
  17.  
  18.   printf("%s\n",current_time());
  19.  
  20.   return (0);
  21. }
  22.