On Thu, Nov 02, 2006 at 01:44:36AM +0000, Andy Whitcroft wrote: > That said if you know its constant you can also use sizeof("foo") and > that is done at compile time. Something like: > > #define strxcmp(x, y) strncmp((x), (y), sizeof((y)) You would, of course, need to use sizeof(y)-1 to avoid comparing the NUL termination. :) This is a slightly dangerous macro, because it _only_ works for string literals, but not pointers (which is fine in this case, but its limitations need to be documented). -Peff - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html