repo.or.cz
/
elinks
/
elinks-j605.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
grafthistory: comment about downloading the pack index
[elinks/elinks-j605.git]
/
src
/
main
/
interlink.h
blob
5538e3e82aa349adeafc1340356e593ed0c7046a
1
#ifndef EL__MAIN_INTERLINK_H
2
#define EL__MAIN_INTERLINK_H
3
4
#ifdef CONFIG_INTERLINK
5
int
init_interlink
(
void
);
6
void
done_interlink
(
void
);
7
#else
8
#define init_interlink() (-1)
9
#define done_interlink()
10
#endif
11
12
#endif