#include #include #include "sapchannelinfo.h" sap_channelinfo * sap_channelinfo_new() { sap_channelinfo *ci; if((ci=malloc(sizeof(sap_channelinfo)))==NULL) return(NULL); memset(ci,0,sizeof(sap_channelinfo)); return(ci); } void sap_channelinfo_free(sap_channelinfo *ci) { if(ci==NULL) return; free(ci),ci=NULL; }