0
0
mirror of https://github.com/rkd77/elinks.git synced 2025-10-21 19:54:04 -04:00
Files
elinks/src/protocol/nntp/nntp.h
Witold Filipczyk 0fea79cc8f [cflags] Removed -Wno-pointer-sign
Likely some new bugs were introduced by this change.
The long term goal is clean compilation by g++.
2021-01-02 16:20:27 +01:00

24 lines
408 B
C

#ifndef EL__PROTOCOL_NNTP_NNTP_H
#define EL__PROTOCOL_NNTP_NNTP_H
#include "main/module.h"
#ifdef __cplusplus
extern "C" {
#endif
/* Returns the server that should be used when expanding news: URIs */
char *get_nntp_server(void);
/* Returns the entries the user wants to have shown */
char *get_nntp_header_entries(void);
extern struct module nntp_protocol_module;
#ifdef __cplusplus
}
#endif
#endif