diff options
author | Kevin Wolf <kwolf@redhat.com> | 2013-06-05 14:19:27 +0200 |
---|---|---|
committer | Stefan Hajnoczi <stefanha@redhat.com> | 2013-06-06 11:27:03 +0200 |
commit | 5e00984aef7c1c317e27c0e8acf66526513c770f (patch) | |
tree | a2cbce230724bf4d8dc8270c66fb90ef476fa64e /include/qemu-common.h | |
parent | a23818f4ff3d7981f49453b739f589e4205930b5 (diff) | |
download | qemu-5e00984aef7c1c317e27c0e8acf66526513c770f.zip |
cutils: Support 'P' and 'E' suffixes in strtosz()
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Diffstat (limited to 'include/qemu-common.h')
-rw-r--r-- | include/qemu-common.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/qemu-common.h b/include/qemu-common.h index cb82ef3d42..d95ea1e147 100644 --- a/include/qemu-common.h +++ b/include/qemu-common.h @@ -191,6 +191,8 @@ int parse_uint_full(const char *s, unsigned long long *value, int base); * A-Z, as strtosz() will use qemu_toupper() on the given argument * prior to comparison. */ +#define STRTOSZ_DEFSUFFIX_EB 'E' +#define STRTOSZ_DEFSUFFIX_PB 'P' #define STRTOSZ_DEFSUFFIX_TB 'T' #define STRTOSZ_DEFSUFFIX_GB 'G' #define STRTOSZ_DEFSUFFIX_MB 'M' |