1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-06-27 01:25:34 +00:00
elinks/src/protocol/user.h

22 lines
386 B
C
Raw Permalink Normal View History

#ifndef EL__PROTOCOL_USER_H
#define EL__PROTOCOL_USER_H
#include "main/module.h"
#include "protocol/protocol.h"
#include "terminal/terminal.h"
#ifdef __cplusplus
extern "C" {
#endif
extern struct module user_protocol_module;
extern protocol_external_handler_T user_protocol_handler;
2022-02-21 16:13:14 +00:00
char *get_user_program(struct terminal *, const char *, int);
#ifdef __cplusplus
}
#endif
#endif