log_local.h 366 B

1234567891011121314151617
  1. #ifndef LOCAL_LOG_H
  2. #define LOCAL_LOG_H
  3. #include <stdio.h>
  4. #include <stdlib.h>
  5. #include <string.h>
  6. #include <ctype.h>
  7. //#include "common_defs.h"
  8. #include "../commhub/commhub.h"
  9. #define LOG_LOCAL_DEFAULT_LOGFILE "/tmp/local.log"
  10. int log_local(char *log_fn, char *msg);
  11. int log_local_message_record(char *log_fn, char *prefix, struct message_record *msg);
  12. #endif