repo.or.cz
/
opsoft_archive.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Add very old versions (for history).
[opsoft_archive.git]
/
silentbob
/
silentbob-1.4
/
include
/
log.h
blob
fc0819e0aaeb63d832341cba3b728885fe375daa
1
/*
2
* (c) Oleg Puchinin 2006
3
* graycardinalster@gmail.com
4
*
5
*/
6
7
#ifndef DEFINE_LOG_H
8
#define DEFINE_LOG_H
9
10
int
log_init
();
11
int
log_globals
(
char
*
file
,
int
type
,
int
size
);
12
int
log_write
(
char
*
log_name
,
char
*
log_str
);
13
14
#endif
15