MolV3000.cpp (pymol-v1.8.6.0.tar.bz2) | : | MolV3000.cpp (pymol-v2.1.0.tar.bz2) | ||
---|---|---|---|---|
skipping to change at line 23 | skipping to change at line 23 | |||
#include "os_std.h" | #include "os_std.h" | |||
#include "MolV3000.h" | #include "MolV3000.h" | |||
#include "MemoryDebug.h" | #include "MemoryDebug.h" | |||
#include "Feedback.h" | #include "Feedback.h" | |||
#include "Parse.h" | #include "Parse.h" | |||
#include "Vector.h" | #include "Vector.h" | |||
#include "Rep.h" | #include "Rep.h" | |||
#include "Lex.h" | #include "Lex.h" | |||
#include "strcasecmp.h" | ||||
#ifdef WIN32 | ||||
#define strcasecmp(s1, s2) _stricmp(s1, s2) | ||||
#define strncasecmp(s1, s2, n) _strnicmp(s1, s2, n) | ||||
#endif | ||||
/* | /* | |||
* Read a MOL/SDF V3000 line into the `out` buffer, stripping the leading | * Read a MOL/SDF V3000 line into the `out` buffer, stripping the leading | |||
* "M V30 " and taking line continuation (trailing hyphen) into account. | * "M V30 " and taking line continuation (trailing hyphen) into account. | |||
* | * | |||
* Moves the input pointer `p` to the next line. | * Moves the input pointer `p` to the next line. | |||
* | * | |||
* Return false if line doesn't start with "M V30 ". | * Return false if line doesn't start with "M V30 ". | |||
*/ | */ | |||
static | static | |||
End of changes. 1 change blocks. | ||||
5 lines changed or deleted | 1 lines changed or added |