diff options
Diffstat (limited to 'include/qemu')
-rw-r--r-- | include/qemu/cutils.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/qemu/cutils.h b/include/qemu/cutils.h index f0878ea..a663340 100644 --- a/include/qemu/cutils.h +++ b/include/qemu/cutils.h @@ -126,6 +126,10 @@ time_t mktimegm(struct tm *tm); int qemu_fdatasync(int fd); int fcntl_setfl(int fd, int flag); int qemu_parse_fd(const char *param); +int qemu_strtoi(const char *nptr, const char **endptr, int base, + int *result); +int qemu_strtoui(const char *nptr, const char **endptr, int base, + unsigned int *result); int qemu_strtol(const char *nptr, const char **endptr, int base, long *result); int qemu_strtoul(const char *nptr, const char **endptr, int base, |