mirror of
https://github.com/rkd77/elinks.git
synced 2025-10-21 19:54:04 -04:00
18 lines
310 B
C
18 lines
310 B
C
|
|
#ifndef EL__PROTOCOL_GOPHER_GOPHER_H
|
|
#define EL__PROTOCOL_GOPHER_GOPHER_H
|
|
|
|
#include "main/module.h"
|
|
#include "protocol/protocol.h"
|
|
|
|
#ifdef CONFIG_GOPHER
|
|
extern protocol_handler_T gopher_protocol_handler;
|
|
#else
|
|
#define gopher_protocol_handler NULL
|
|
#endif
|
|
|
|
extern struct module gopher_protocol_module;
|
|
|
|
|
|
#endif
|