提交 32b3fd9b 编写于 作者: J Ján Tomko

util: remove virHexToBin

Now that it is no longer used.
Signed-off-by: NJán Tomko <jtomko@redhat.com>
Reviewed-by: NLaine Stump <laine@redhat.com>
上级 2e53bfa1
...@@ -3409,7 +3409,6 @@ virGetUserID; ...@@ -3409,7 +3409,6 @@ virGetUserID;
virGetUserName; virGetUserName;
virGetUserRuntimeDirectory; virGetUserRuntimeDirectory;
virGetUserShell; virGetUserShell;
virHexToBin;
virHostGetDRMRenderNode; virHostGetDRMRenderNode;
virHostHasIOMMU; virHostHasIOMMU;
virIndexToDiskName; virIndexToDiskName;
......
...@@ -164,21 +164,6 @@ int virSetSockReuseAddr(int fd, bool fatal) ...@@ -164,21 +164,6 @@ int virSetSockReuseAddr(int fd, bool fatal)
#endif #endif
/* Convert C from hexadecimal character to integer. */
int
virHexToBin(unsigned char c)
{
switch (c) {
default: return c - '0';
case 'a': case 'A': return 10;
case 'b': case 'B': return 11;
case 'c': case 'C': return 12;
case 'd': case 'D': return 13;
case 'e': case 'E': return 14;
case 'f': case 'F': return 15;
}
}
/* Scale an integer VALUE in-place by an optional case-insensitive /* Scale an integer VALUE in-place by an optional case-insensitive
* SUFFIX, defaulting to SCALE if suffix is NULL or empty (scale is * SUFFIX, defaulting to SCALE if suffix is NULL or empty (scale is
* typically 1 or 1024). Recognized suffixes include 'b' or 'bytes', * typically 1 or 1024). Recognized suffixes include 'b' or 'bytes',
......
...@@ -44,8 +44,6 @@ int virScaleInteger(unsigned long long *value, const char *suffix, ...@@ -44,8 +44,6 @@ int virScaleInteger(unsigned long long *value, const char *suffix,
unsigned long long scale, unsigned long long limit) unsigned long long scale, unsigned long long limit)
ATTRIBUTE_NONNULL(1) G_GNUC_WARN_UNUSED_RESULT; ATTRIBUTE_NONNULL(1) G_GNUC_WARN_UNUSED_RESULT;
int virHexToBin(unsigned char c);
int virParseVersionString(const char *str, unsigned long *version, int virParseVersionString(const char *str, unsigned long *version,
bool allowMissing); bool allowMissing);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册