Hello,

libspopc is young but quite complete.
Typing "make" will make the library and
2 executable examples called "poptest1" and "poptest2"
see examples directory to learn how to use libspopc.
libspopc.h is also a good start to study the 2 APIs
(one high level, on low-level, make your choice)

see poptest2.c to learn how to use libspopc high-level API,
high-level API is recommended. poptest1.c is lower-level.
If you prefer to use the low-level API, see it also in
libspopc.h but whatever you do, don't mix the use of both
low and high level !

quick manuals are in ./doc directory

Type "make install" to install libspopc.a in /usr/lib
(you must be root to do that)

To link YOUR program with libspopc, just add
#include <libspopc.h>
in program.c before your main() 
and compile as:
gcc -Wall -o program program.c -lspopc

if you are under windows, add: -lwsock32
and compile with -DWIN32

if you want libspopc fully reentrant, compile
with -D_REENTRANT

enjoy !

Ben, 20011227
<brouits@free.fr>
