File: log.h

package info (click to toggle)
fvwm3 1.0.6a%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 10,408 kB
  • sloc: ansic: 141,349; perl: 4,891; sh: 4,568; makefile: 785; yacc: 688; lex: 187; sed: 11
file content (14 lines) | stat: -rw-r--r-- 326 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef FVWMLIB_LOG_H
#define FVWMLIB_LOG_H

#define printflike(a, b) __attribute__ ((format (printf, a, b)))

extern int	lib_log_level;

void	set_log_file(char *name);
void	log_open(const char *);
void	log_toggle(const char *);
void	log_close(void);
void printflike(2, 3) fvwm_debug(const char *, const char *, ...);

#endif