00001 /*---------------------------------------------------------------------------- 00002 secwatch - Copyright (C) 2006 Nic Stevens -- See COPYING for license details 00003 ------------------------------------------------------------------------------ 00004 log.h - Protoypes for the logging and notification functions 00005 -----------------------------------------------------------------------------*/ 00006 #ifndef _LOG_H 00007 int writeLog(const char *format, ...); 00008 int inform(const char *fmt, ...); 00009 char * sysLogPriId(int i); 00010 int sysLogPri(char *name); 00011 char * sysLogFacId(int i); 00012 int sysLogFac(char *name); 00013 00014 #endif
1.4.6