diff options
author | Michael Meskes <meskes@debian.org> | 2009-12-01 08:26:35 +0100 |
---|---|---|
committer | Michael Meskes <meskes@debian.org> | 2009-12-01 08:26:35 +0100 |
commit | 92d607e8349d0f1268b236b3bf4cb433179253f1 (patch) | |
tree | 6230e827557f7cd76ac792d43f4cc6a81be3b272 /src/VBox/Runtime/common/string/RTStrConvertHexBytes.cpp | |
parent | 541f51c4dab24f1decc1cb44888af9d45d619338 (diff) | |
download | virtualbox-92d607e8349d0f1268b236b3bf4cb433179253f1.tar.gz |
Imported Upstream version 3.1.0-dfsgupstream/3.1.0-dfsg
Diffstat (limited to 'src/VBox/Runtime/common/string/RTStrConvertHexBytes.cpp')
-rw-r--r-- | src/VBox/Runtime/common/string/RTStrConvertHexBytes.cpp | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/src/VBox/Runtime/common/string/RTStrConvertHexBytes.cpp b/src/VBox/Runtime/common/string/RTStrConvertHexBytes.cpp new file mode 100644 index 000000000..73606e223 --- /dev/null +++ b/src/VBox/Runtime/common/string/RTStrConvertHexBytes.cpp @@ -0,0 +1,50 @@ +/* $Id: RTStrConvertHexBytes.cpp 23507 2009-10-02 12:02:02Z vboxsync $ */ +/** @file + * IPRT - RTStrConvertHexBytes. + */ + +/* + * Copyright (C) 2009 Sun Microsystems, Inc. + * + * This file is part of VirtualBox Open Source Edition (OSE), as + * available from http://www.virtualbox.org. This file is free software; + * you can redistribute it and/or modify it under the terms of the GNU + * General Public License (GPL) as published by the Free Software + * Foundation, in version 2 as it comes in the "COPYING" file of the + * VirtualBox OSE distribution. VirtualBox OSE is distributed in the + * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind. + * + * The contents of this file may alternatively be used under the terms + * of the Common Development and Distribution License Version 1.0 + * (CDDL) only, as it comes in the "COPYING.CDDL" file of the + * VirtualBox OSE distribution, in which case the provisions of the + * CDDL are applicable instead of those of the GPL. + * + * You may elect to license modified versions of this file under the + * terms and conditions of either the GPL or the CDDL or both. + * + * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa + * Clara, CA 95054 USA or visit http://www.sun.com if you need + * additional information or have any questions. + */ + + +/******************************************************************************* +* Header Files * +*******************************************************************************/ +#include "internal/iprt.h" +#include <iprt/string.h> + +#include <iprt/assert.h> +#include <iprt/err.h> + + +RTDECL(int) RTStrConvertHexBytes(char const *pszHex, void *pv, size_t cb, uint32_t fFlags) +{ + AssertPtrReturn(pszHex, VERR_INVALID_POINTER); + AssertReturn(!fFlags, VERR_INVALID_PARAMETER); + + AssertFailed(); + return VERR_NOT_IMPLEMENTED; +} + |