blob: 158becaf5a81c4f7538c1ca9fdfdaf24b274963f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
/*
* (c) Copyright 1994 HEWLETT-PACKARD COMPANY
*
* To anyone who acknowledges that this file is provided
* "AS IS" without any express or implied warranty:
* permission to use, copy, modify, and distribute this
* file for any purpose is hereby granted without fee,
* provided that the above copyright notice and this
* notice appears in all copies, and that the name of
* Hewlett-Packard Company not be used in advertising or
* publicity pertaining to distribution of the software
* without specific, written prior permission. Hewlett-
* Packard Company makes no representations about the
* suitability of this software for any purpose.
*
*/
/* defines for pop library */
#define NOTOK (-1)
#define OK 0
#define DONE 1
#define DEFMAILHOST "mailhost"
int pop_init(), pop_getline();
char *get_errmsg();
int pop_command();
int pop_stat();
int pop_retr();
char *concat();
extern char Errmsg[];
|