File: log.h

package info (click to toggle)
rtpengine 12.5.1.35-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 12,628 kB
  • sloc: ansic: 80,617; perl: 43,314; python: 3,041; sh: 1,092; makefile: 630; asm: 211
file content (12 lines) | stat: -rw-r--r-- 218 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef __LOG_H__
#define __LOG_H__

#include "loglib.h"

void __ilog(int prio, const char *fmt, ...) __attribute__ ((format (printf, 2, 3)));

GQueue *get_log_lines(uint num, uint end);

void log_clear(void);

#endif