00001 #ifndef _Z_SET_H_ 00002 #define _Z_SET_H_ 00003 00004 /* Copyright (c) Kyriacos Leptos and the President and Fellows of Harvard University 00005 Release Date: 2004-11-01 00006 Part of the MapQuant suite library "massspec.lib" 00007 */ 00008 00009 int ZSET_NO_CHARGES; 00010 00011 typedef int* ZSet; 00012 00013 int ZSet_getFirstCharge(ZSet z_set); 00014 int* ZSet_getChargeArray (ZSet z_set); 00015 void ZSet_fprint (FILE* fp, ZSet z_set, int format); 00016 char* ZSet_toString (ZSet z_set); 00017 ZSet ZSet_create(); 00018 void ZSet_setAllCharges(ZSet zset); 00019 00020 #endif 00021