]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Universal/HiiDatabaseDxe/R8Lib.h
1) Add BufToHexString, HexStringToBuf and IsHexDigit to BaseLib.
[mirror_edk2.git] / MdeModulePkg / Universal / HiiDatabaseDxe / R8Lib.h
1 /**@file
2 Copyright (c) 2007 - 2008, Intel Corporation
3
4 All rights reserved. This program and the accompanying materials
5 are licensed and made available under the terms and conditions of the BSD License
6 which accompanies this distribution. The full text of the license may be found at
7 http://opensource.org/licenses/bsd-license.php
8
9 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
10 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
11
12
13 **/
14
15 #ifndef __R8_LIB_H__
16 #define __R8_LIB_H__
17
18
19 /**
20 Compare whether two names of languages are identical.
21
22 @param Language1 Name of language 1
23 @param Language2 Name of language 2
24
25 @retval TRUE same
26 @retval FALSE not same
27
28 **/
29 BOOLEAN
30 R8_EfiLibCompareLanguage (
31 IN CHAR8 *Language1,
32 IN CHAR8 *Language2
33 )
34 ;
35
36
37 #endif
38
39