#ifndef _NNTP_LIB_H_ #define _NNTP_LIB_H_ /* * Copyright (c) 1996, Ruslan R. Laishev (@RRL) */ time_t cvt_rfc_to_vms (char *); time_t cvt_nntp_to_vms (char *); char *cvt_vms_to_rfc (time_t,char *); char *strlwr (char *); int strnlen (char *,int); int strincmp (char *,char *,int); int match_wild (char *,char *); int domatch (char *,char *); int match_in_list (char *,char *); #define min(x,y) ((x > y)?y:x) #define max(x,y) ((x < y)?y:x) #endif /* _NNTP_LIB_H_ */