Home | History | Annotate | Download | only in iftop-0.17
      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 
     10 #ifndef __SCREENFILTER_H_ /* include guard */
     11 #define __SCREENFILTER_H_
     12 
     13 #include "config.h"
     14 
     15 #ifdef HAVE_REGCOMP
     16 
     17 int screen_filter_set(char* s);
     18 int screen_filter_match(char* s);
     19 
     20 #endif
     21 
     22 #endif /* __SCREENFILTER_H_ */
     23