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

24 lines
362 B
C
Raw Normal View History

2006-01-16 22:42:17 +00:00
#ifndef EL__PROTOCOL_COMMON_H
#define EL__PROTOCOL_COMMON_H
#include "network/state.h"
#ifdef __cplusplus
extern "C" {
#endif
struct string;
struct uri;
2006-01-16 22:42:17 +00:00
/* Close all non-terminal file descriptors. */
void close_all_non_term_fd(void);
struct connection_state
init_directory_listing(struct string *page, struct uri *uri);
#ifdef __cplusplus
}
#endif
2006-01-16 22:42:17 +00:00
#endif