screenfilter.h 406 B

12345678910111213141516171819202122
  1. /*
  2. * screenfilter.h:
  3. *
  4. * Copyright (c) 2002 DecisionSoft Ltd.
  5. * Paul Warren (pdw) Fri Oct 25 10:25:50 2002
  6. *
  7. * RCS: $Id: screenfilter.h,v 1.2 2002/11/04 12:27:35 chris Exp $
  8. */
  9. #ifndef __SCREENFILTER_H_ /* include guard */
  10. #define __SCREENFILTER_H_
  11. #include "config.h"
  12. #ifdef HAVE_REGCOMP
  13. int screen_filter_set(char* s);
  14. int screen_filter_match(char* s);
  15. #endif
  16. #endif /* __SCREENFILTER_H_ */