/* * getxxx.c * * */ #include #include #include #include #include "xprobe.h" main(argc,argv) char **argv; { struct chromosome *obj, *readobj(); while ((obj = readobj(stdin)) != NULL) { if (obj->plist->Cbtype & XPROBE) writeobj(stdout,obj); freeobj(obj); } }