home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / misc / volume38 / libftp / part01 / FtpInitMessage.c < prev    next >
C/C++ Source or Header  |  1993-07-13  |  215b  |  20 lines

  1. #include "FtpLibrary.h"
  2.  
  3. char * FtpMessageList[1000];
  4.  
  5. STATUS FtpInitMessageList()
  6. {
  7.   int i;
  8.   static u = 0;
  9.   
  10.   if ( u )
  11.     return 1;
  12.  
  13.   u = 1;
  14.  
  15.   for (i=0;i<1000;i++)
  16.     FtpMessageList[i]=NULL;
  17.  
  18.   return 1;
  19. }
  20.