File: log.h

package info (click to toggle)
tsdecrypt 10.0-5
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 1,288 kB
  • sloc: ansic: 14,377; makefile: 245; sh: 166
file content (16 lines) | stat: -rw-r--r-- 343 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
 * Logger function header file
 * Copyright (C) 2010-2011 Unix Solutions Ltd.
 *
 * Released under MIT license.
 * See LICENSE-MIT.txt for license terms.
 */
#ifndef LIBTS_LOG_H
#define LIBTS_LOG_H

__attribute__ ((format(printf, 1, 2)))
void ts_LOGf(const char *fmt, ...);

void ts_set_log_func(void (*LOG_func)(const char *msg));

#endif