1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-06-28 01:35:32 +00:00
elinks/src/protocol/ftp/ftp.h

24 lines
353 B
C
Raw Normal View History

#ifndef EL__PROTOCOL_FTP_FTP_H
#define EL__PROTOCOL_FTP_FTP_H
#include "main/module.h"
#include "protocol/protocol.h"
#ifdef __cplusplus
extern "C" {
#endif
extern struct module ftp_protocol_module;
#ifdef CONFIG_FTP
extern protocol_handler_T ftp_protocol_handler;
#else
#define ftp_protocol_handler NULL
#endif
#ifdef __cplusplus
}
#endif
#endif