home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / unix / volume26 / xinetd-2.1.1 / part01 / libs / src / str / ss_kmp.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-06-27  |  381 b   |  23 lines

  1. /*
  2.  * (c) Copyright 1992, 1993 by Panagiotis Tsirigotis
  3.  * All rights reserved.  The file named COPYRIGHT specifies the terms 
  4.  * and conditions for redistribution.
  5.  */
  6.  
  7. #ifndef SS_KMP_H
  8. #define SS_KMP_H
  9.  
  10. /*
  11.  * $Id: ss_kmp.h,v 3.1 1993/06/13 02:44:52 panos Exp $
  12.  */
  13.  
  14. typedef int next_int ;            /* must be signed */
  15.  
  16. struct kmp_header
  17. {
  18.     next_int *next ;
  19. } ;
  20.  
  21. #endif    /* SS_KMP_H */
  22.  
  23.