From: markus schnalke Date: Thu, 5 Jan 2012 11:26:09 +0000 (+0100) Subject: Removed isprefix() and replaced it with strncmp(). X-Git-Tag: mmh-thesis-end~419 X-Git-Url: http://git.marmaro.de/?a=commitdiff_plain;h=b0b1dd37ff515578cf7cba51625189eb34a196cb;hp=b0b1dd37ff515578cf7cba51625189eb34a196cb;p=mmh Removed isprefix() and replaced it with strncmp(). isprefix() had been ssequal(), which had not been what it advertised to be. Now, all this is gone. We could get problems if one of the arguments is NULL, as isprefix() handled this situation, but strncmp() does not. It appears as if this case does not show up in the code. ---