/* 
   pgrep.h
   Jim Garlick

   This include file contains the function declarations and the messages for 
   the pgrep program.
*/

#define BUF_SIZE 1000
#define STR_SIZE 256
#define SLAVE_NAME "pgrep_s"

#define WORK_ON_THIS 100
#define AVAILABLE 101
#define DONE 102
#define WAIT 103
#define DIE 104

int cryptoscan( char *buf , char *s , int begin , int *offset , int *length ) ;
void cryptocount( char *buf , char *search_string , int *found_count ) ;
int last_n_alphas( char *buf , int len , int *start ) ;
