summaryrefslogtreecommitdiff
path: root/source/tools/acpisrc/asutils.c
diff options
context:
space:
mode:
authorJung-uk Kim <jkim@FreeBSD.org>2015-07-20 22:31:50 +0000
committerJung-uk Kim <jkim@FreeBSD.org>2015-07-20 22:31:50 +0000
commit136eac2a0638d3c751b1987603f71a9ae26879fd (patch)
tree1e61df024e8a47b6bc4e25d07f455c9dcd7e2dc8 /source/tools/acpisrc/asutils.c
parentf3bbb1ca6c1b2b877d015a8f5f0c67e48a7a57ae (diff)
Notes
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