You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
236 B
C

#include "stride.h"
int Process_COMPND(BUFFER Buffer, enum METHOD *Method)
{
if( strstr(Buffer,"NMR") )
*Method = NMR;
if( strstr(Buffer,"MODEL") )
if( *Method == XRay )
*Method = Model;
return(SUCCESS);
}