diff options
author | Ruiyu Ni <ruiyu.ni@intel.com> | 2016-07-18 18:06:33 +0800 |
---|---|---|
committer | Ruiyu Ni <ruiyu.ni@intel.com> | 2016-07-20 10:27:51 +0800 |
commit | c0bcd3433f33876c519bf5567e0ab69261b57fe9 (patch) | |
tree | 54535f574a388cd336cd5f1a80d01b5be9b69e3a /ShellPkg/Application/Shell/Shell.h | |
parent | b464d7ed0f417fe37a9d998e377a144704273949 (diff) | |
download | edk2-platforms-c0bcd3433f33876c519bf5567e0ab69261b57fe9.tar.xz |
ShellPkg: Move FindFirstCharacter/GetNextParameter to ShellCommandLib
And add Shell prefix to the two library APIs.
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Ruiyu Ni <ruiyu.ni@intel.com>
Reviewed-by: Jaben Carsey <jaben.carsey@intel.com>
Diffstat (limited to 'ShellPkg/Application/Shell/Shell.h')
-rw-r--r-- | ShellPkg/Application/Shell/Shell.h | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/ShellPkg/Application/Shell/Shell.h b/ShellPkg/Application/Shell/Shell.h index 29b36b003a..a34c91ad1e 100644 --- a/ShellPkg/Application/Shell/Shell.h +++ b/ShellPkg/Application/Shell/Shell.h @@ -371,24 +371,6 @@ RunScriptFile ( );
/**
- Return the pointer to the first occurrence of any character from a list of characters.
-
- @param[in] String the string to parse
- @param[in] CharacterList the list of character to look for
- @param[in] EscapeCharacter An escape character to skip
-
- @return the location of the first character in the string
- @retval CHAR_NULL no instance of any character in CharacterList was found in String
-**/
-CONST CHAR16*
-EFIAPI
-FindFirstCharacter(
- IN CONST CHAR16 *String,
- IN CONST CHAR16 *CharacterList,
- IN CONST CHAR16 EscapeCharacter
- );
-
-/**
Cleans off leading and trailing spaces and tabs.
@param[in] String pointer to the string to trim them off.
|