Hello,

libspopc is a lightweight pop3 client library writtent in C.
It internally uses blocking sockets but exports a high-level
API that does not expose the socket to you, unless you want
to use the low-level API (but don't use both!).

- if you are under windows, import the files into you IDE,
and compile with WIN32 cpp define and the wsock32 library.

- if you want to disable OpenSSL support, compile without
the USE_SSL cpp define and no LDFLAG (see Makefile)

- manuals are in doc/ directory

- under Unices, type "make install" to install libspopc.a
and libsopoc.so in /usr/lib/ plus libspopc.h in /usr/include
(you must be root to do that)

To link your program with libspopc, just add
#include <libspopc.h> before your main function
and compile as:
cc -o program program.c -lspopc

enjoy ! questions/patches ? mail me <brouits@free.fr>

