Added dynamic object conversion support

date	2001.01.09.23.34.00;	author rmoore1;	state Exp;
This commit is contained in:
aystarik 2005-06-29 19:03:31 +00:00
parent 086e962212
commit c7e5267a5e

View File

@ -1,7 +1,7 @@
/******************************************************************************
*
* Module Name: cmclib - Local implementation of C library functions
* $Revision: 1.28 $
* $Revision: 1.31 $
*
*****************************************************************************/
@ -9,8 +9,8 @@
*
* 1. Copyright Notice
*
* Some or all of this work - Copyright (c) 1999, Intel Corp. All rights
* reserved.
* Some or all of this work - Copyright (c) 1999, 2000, Intel Corp.
* All rights reserved.
*
* 2. License
*
@ -454,7 +454,7 @@ AcpiCmMemcpy (
void *
AcpiCmMemset (
void *Dest,
UINT32 Value,
NATIVE_UINT Value,
NATIVE_UINT Count)
{
NATIVE_CHAR *New = (NATIVE_CHAR *) Dest;
@ -630,6 +630,7 @@ static const UINT8 _acpi_ctype[257] = {
#define IS_LOWER(c) (_acpi_ctype[(unsigned char)(c)] & (_ACPI_LO))
#define IS_DIGIT(c) (_acpi_ctype[(unsigned char)(c)] & (_ACPI_DI))
#define IS_SPACE(c) (_acpi_ctype[(unsigned char)(c)] & (_ACPI_SP))
#define IS_XDIGIT(c) (_acpi_ctype[(unsigned char)(c)] & (_ACPI_XD))
/*******************************************************************************
@ -770,7 +771,7 @@ UINT32
AcpiCmStrtoul (
const NATIVE_CHAR *String,
NATIVE_CHAR **Terminator,
UINT32 Base)
NATIVE_UINT Base)
{
UINT32 converted = 0;
UINT32 index;