mirror of
https://github.com/acpica/acpica/
synced 2025-02-24 09:24:08 +03:00
move strupr to cmutils, and change linux include to use system
clibrary date 2001.04.19.00.05.00; author agrover; state Exp;
This commit is contained in:
parent
32f4aed19a
commit
cc8cdbd6ee
@ -1,7 +1,7 @@
|
||||
/******************************************************************************
|
||||
*
|
||||
* Module Name: cmclib - Local implementation of C library functions
|
||||
* $Revision: 1.36 $
|
||||
* $Revision: 1.37 $
|
||||
*
|
||||
*****************************************************************************/
|
||||
|
||||
@ -675,38 +675,6 @@ AcpiCmToLower (
|
||||
}
|
||||
|
||||
|
||||
/*******************************************************************************
|
||||
*
|
||||
* FUNCTION: strupr
|
||||
*
|
||||
* PARAMETERS: SrcString - The source string to convert to
|
||||
*
|
||||
* RETURN: SrcString
|
||||
*
|
||||
* DESCRIPTION: Convert string to uppercase
|
||||
*
|
||||
******************************************************************************/
|
||||
|
||||
NATIVE_CHAR *
|
||||
AcpiCmStrupr (
|
||||
NATIVE_CHAR *SrcString)
|
||||
{
|
||||
NATIVE_CHAR *String;
|
||||
|
||||
|
||||
/* Walk entire string, uppercasing the letters */
|
||||
|
||||
for (String = SrcString; *String; )
|
||||
{
|
||||
*String = (char) AcpiCmToUpper (*String);
|
||||
String++;
|
||||
}
|
||||
|
||||
|
||||
return (SrcString);
|
||||
}
|
||||
|
||||
|
||||
/*******************************************************************************
|
||||
*
|
||||
* FUNCTION: strstr
|
||||
|
Loading…
x
Reference in New Issue
Block a user