home *** CD-ROM | disk | FTP | other *** search
/ ARM Club 1 / ARM_CLUB_CD.iso / contents / apps / languages / progs / curses / Source / h / patterns < prev    next >
Encoding:
Text File  |  1987-09-27  |  789 b   |  37 lines

  1. /*
  2.  
  3.        This file is part of the PDP software package.
  4.          
  5.        Copyright 1987 by James L. McClelland and David E. Rumelhart.
  6.        
  7.        Please refer to licensing information in the file license.txt,
  8.        which is in the same directory with this source file and is
  9.        included here by reference.
  10. */
  11.  
  12.  
  13. /* file: patterns.h
  14.  
  15.     This file contains the header information for patterns.
  16.     
  17.     First version implemented by Elliot Jaffe.
  18.     
  19.     Date of last revision:  8-12-87/JLM.
  20. */
  21.  
  22. #define MAXPATTERNS    100
  23. #define    PAIRS    1
  24.  
  25. extern int  npatterns;
  26. extern int  maxpatterns;
  27. extern float **ipattern;
  28. extern float **tpattern;
  29. extern char **pname;
  30. extern int *used;
  31. extern char cpname[];
  32.  
  33. int     get_pattern_pairs ();
  34. int     get_patterns ();
  35. int    init_pattern_pairs ();
  36. int    init_patterns ();
  37.