2018-03-24 07:44:59 +00:00
|
|
|
#include "test-tool.h"
|
2023-05-16 06:33:56 +00:00
|
|
|
#include "read-cache-ll.h"
|
2017-04-14 19:12:28 +00:00
|
|
|
|
2023-03-28 20:57:25 +00:00
|
|
|
int cmd__strcmp_offset(int argc UNUSED, const char **argv)
|
2017-04-14 19:12:28 +00:00
|
|
|
{
|
|
|
|
int result;
|
|
|
|
size_t offset;
|
|
|
|
|
|
|
|
if (!argv[1] || !argv[2])
|
|
|
|
die("usage: %s <string1> <string2>", argv[0]);
|
|
|
|
|
|
|
|
result = strcmp_offset(argv[1], argv[2], &offset);
|
|
|
|
|
|
|
|
/*
|
2017-06-25 10:20:41 +00:00
|
|
|
* Because different CRTs behave differently, only rely on signs
|
2017-04-14 19:12:28 +00:00
|
|
|
* of the result values.
|
|
|
|
*/
|
|
|
|
result = (result < 0 ? -1 :
|
|
|
|
result > 0 ? 1 :
|
|
|
|
0);
|
|
|
|
printf("%d %"PRIuMAX"\n", result, (uintmax_t)offset);
|
|
|
|
return 0;
|
|
|
|
}
|