version 1.2 | | version 1.3 |
---|
| | |
/* | | /* |
* static char *rcsid_style_c = | | * static char *rcsid_style_c = |
* "$Id: style.c,v 1.2 1999/04/15 00:19:47 cvs Exp $"; | | * "$Id: style.c,v 1.3 1999/06/26 22:48:36 cvs Exp $"; |
*/ | | */ |
| | |
/* | | /* |
| | |
.h file in linux allows non-const. */ | | .h file in linux allows non-const. */ |
int select_regular_files(struct dirent *the_entry) { | | int select_regular_files(struct dirent *the_entry) { |
if(the_entry->d_name[0]=='.') return 0; | | if(the_entry->d_name[0]=='.') return 0; |
| | if(strstr(the_entry->d_name,"CVS")) return 0; |
return 1; | | return 1; |
} | | } |
| | |