File: logger.h

package info (click to toggle)
atftp 0.7.dfsg-1.2
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 1,120 kB
  • ctags: 539
  • sloc: ansic: 6,378; sh: 3,886; makefile: 82
file content (26 lines) | stat: -rw-r--r-- 732 bytes parent folder | download | duplicates (12)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/* hey emacs! -*- Mode: C; c-file-style: "k&r"; indent-tabs-mode: nil -*- */
/*
 * logger.h
 *
 * $Id: logger.h,v 1.6 2000/12/27 00:57:16 remi Exp $
 *
 * Copyright (c) 2000 Jean-Pierre Lefebvre <helix@step.polymtl.ca>
 *                and Remi Lefebvre <remi@debian.org>
 *
 * atftp is free software; you can redistribute them and/or modify them
 * under the terms of the GNU General Public License as published by the
 * Free Software Foundation; either version 2 of the License, or (at your
 * option) any later version.
 *
 */

#ifndef logger_h
#define logger_h

#include <syslog.h>

void open_logger(char *ident, char *filename, int priority);
void logger(int severity, const char *fmt, ...);
void close_logger(void);

#endif