blob: 3c5ef552357f5086b9a19987aa71bdec1b81b373 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef GOPHER_H
#define GOPHER_H
#define CGIT_GOPHER_HOST "localhost"
#define CGIT_GOPHER_PORT 1500
void cgit_gopher_selector(char type, char *str, char *sel, char *host, int port);
void cgit_gopher_info(char *msg, char *host, int port);
void cgit_gopher_menu(char *descr, char *sel, char *host, int port);
void cgit_gopher_textfile(char *descr, char *sel, char *host, int port);
void cgit_gopher_error(char *descr, char *host, int port);
#endif /* GOPHER_H */
|