~ubuntu-branches/debian/jessie/tsdecrypt/jessie

« back to all changes in this revision

Viewing changes to libtsfuncs/log.h

  • Committer: Package Import Robot
  • Author(s): Alessio Treglia
  • Date: 2012-04-04 09:42:43 UTC
  • Revision ID: package-import@ubuntu.com-20120404094243-qsc40h18oolnxw5r
Tags: upstream-7.0
ImportĀ upstreamĀ versionĀ 7.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Logger function header file
 
3
 * Copyright (C) 2010-2011 Unix Solutions Ltd.
 
4
 *
 
5
 * Released under MIT license.
 
6
 * See LICENSE-MIT.txt for license terms.
 
7
 */
 
8
#ifndef LIBTS_LOG_H
 
9
#define LIBTS_LOG_H
 
10
 
 
11
__attribute__ ((format(printf, 1, 2)))
 
12
void ts_LOGf(const char *fmt, ...);
 
13
 
 
14
void ts_set_log_func(void (*LOG_func)(const char *msg));
 
15
 
 
16
#endif