summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2000-10-22 07:33:21 +0000
committerJim Meyering <jim@meyering.net>2000-10-22 07:33:21 +0000
commit8a149d2242e8e82c804d1bf233083b293d84d728 (patch)
tree65808ae94dd5d1cfd10bdc2de8cce7cd641c38cc /src
parentb84871a2794dec74a8f1d621b4405061853a0b83 (diff)
downloadcoreutils-8a149d2242e8e82c804d1bf233083b293d84d728.tar.xz
Support 8-byte integers, assuming they're printable with e.g., %lld.
Add support for printing data as unsigned long long integers.
Diffstat (limited to 'src')
-rw-r--r--src/od.c34
1 files changed, 32 insertions, 2 deletions
diff --git a/src/od.c b/src/od.c
index 1cfbbb8b2..5493abfe0 100644
--- a/src/od.c
+++ b/src/od.c
@@ -77,6 +77,8 @@ enum size_spec
SHORT,
INT,
LONG,
+ LONG_LONG,
+ /* FIXME: add INTMAX support, too */
FLOAT_SINGLE,
FLOAT_DOUBLE,
FLOAT_LONG_DOUBLE
@@ -229,7 +231,11 @@ static FILE *in_stream;
/* If nonzero, at least one of the files we read was standard input. */
static int have_read_stdin;
-#define LONGEST_INTEGRAL_TYPE long int
+#ifdef HAVE_UNSIGNED_LONG_LONG
+# define LONGEST_INTEGRAL_TYPE unsigned long long
+#else
+# define LONGEST_INTEGRAL_TYPE long int
+#endif
#define MAX_INTEGRAL_TYPE_SIZE sizeof(LONGEST_INTEGRAL_TYPE)
static enum size_spec integral_type_size[MAX_INTEGRAL_TYPE_SIZE + 1];
@@ -441,6 +447,21 @@ print_long (long unsigned int n_bytes, const char *block,
}
}
+#ifdef HAVE_UNSIGNED_LONG_LONG
+static void
+print_long_long (long unsigned int n_bytes, const char *block,
+ const char *fmt_string)
+{
+ int i;
+ for (i = n_bytes / sizeof (unsigned long long); i > 0; i--)
+ {
+ unsigned long long tmp = *(const unsigned long long *) block;
+ printf (fmt_string, tmp);
+ block += sizeof (unsigned long long);
+ }
+}
+#endif
+
static void
print_float (long unsigned int n_bytes, const char *block,
const char *fmt_string)
@@ -704,7 +725,9 @@ this system doesn't provide a %lu-byte integral type"), s_orig, size);
fmt = SIGNED_DECIMAL;
sprintf (fmt_string, " %%%u%sd",
(field_width = bytes_to_signed_dec_digits[size]),
- (size_spec == LONG ? "l" : ""));
+ (size_spec == LONG ? "l"
+ : (size_spec == LONG_LONG ? "ll"
+ : "")));
break;
case 'o':
@@ -756,6 +779,10 @@ this system doesn't provide a %lu-byte integral type"), s_orig, size);
print_function = print_long;
break;
+ case LONG_LONG:
+ print_function = print_long_long;
+ break;
+
default:
abort ();
}
@@ -1596,6 +1623,9 @@ main (int argc, char **argv)
integral_type_size[sizeof (short int)] = SHORT;
integral_type_size[sizeof (int)] = INT;
integral_type_size[sizeof (long int)] = LONG;
+#ifdef HAVE_UNSIGNED_LONG_LONG
+ integral_type_size[sizeof (long long)] = LONG_LONG;
+#endif
for (i = 0; i <= MAX_FP_TYPE_SIZE; i++)
fp_type_size[i] = NO_SIZE;