3 int cmd_main(int argc, const char **argv)
8 if (!argv[1] || !argv[2])
9 die("usage: %s <string1> <string2>", argv[0]);
11 result = strcmp_offset(argv[1], argv[2], &offset);
14 * Because different CRTs behave differently, only rely on signs
15 * of the result values.
17 result = (result < 0 ? -1 :
20 printf("%d %"PRIuMAX"\n", result, (uintmax_t)offset);