Download | Plain Text | No Line Numbers


  1. /*
  2.   This program is free software; you can redistribute it and/or
  3.   modify it under the terms of the GNU General Public License as
  4.   published by the Free Software Foundation; either version 2, or (at
  5.   your option) any later version.
  6.  
  7.   This program is distributed in the hope that it will be useful, but
  8.   WITHOUT ANY WARRANTY; without even the implied warranty of
  9.   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  10.   General Public License for more details.
  11.  
  12.   Derived from checkpassword-pam by Alexey Mahotkin <alexm@hsys.msk.ru> 2002-2004
  13.   Modified and enhanced by Manuel Mausz 2017
  14. */
  15.  
  16. #ifndef LOGGING_H
  17. #define LOGGING_H
  18.  
  19. void log_init(const char *ident);
  20. void log_close();
  21. void log_error(const char *format, ...);
  22. void log_debug(const char *format, ...);
  23.  
  24. #endif
  25.