summaryrefslogtreecommitdiff
path: root/source/tools/acpisrc/asutils.c
diff options
context:
space:
mode:
Diffstat (limited to 'source/tools/acpisrc/asutils.c')
-rw-r--r--source/tools/acpisrc/asutils.c34
1 files changed, 0 insertions, 34 deletions
diff --git a/source/tools/acpisrc/asutils.c b/source/tools/acpisrc/asutils.c
index 31103a09fbdad..7621fd6925053 100644
--- a/source/tools/acpisrc/asutils.c
+++ b/source/tools/acpisrc/asutils.c
@@ -44,40 +44,6 @@
#include "acpisrc.h"
-/*******************************************************************************
- *
- * FUNCTION: AsStrlwr (strlwr)
- *
- * PARAMETERS: SrcString - The source string to convert
- *
- * RETURN: None
- *
- * DESCRIPTION: Convert string to lowercase
- *
- * NOTE: This is not a POSIX function, so it appears here so that we don't have
- * header file issues with the various hosts/compilers/clibs.
- *
- ******************************************************************************/
-
-void
-AsStrlwr (
- char *SrcString)
-{
- char *String;
-
-
- /* Walk entire string, lowercasing the letters */
-
- if (SrcString)
- {
- for (String = SrcString; *String; String++)
- {
- *String = (char) tolower ((int) *String);
- }
- }
-}
-
-
/******************************************************************************
*
* FUNCTION: AsSkipUntilChar