From 6a690e23d7fb7fa710f6816ee23c17dadfe617b6 Mon Sep 17 00:00:00 2001 From: eric_tian Date: Mon, 24 Dec 2007 02:20:21 +0000 Subject: add iSCSI protocol git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@4423 6f19259b-4bc3-4df7-8a09-765794883524 --- MdeModulePkg/Include/Library/NetLib.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'MdeModulePkg/Include') diff --git a/MdeModulePkg/Include/Library/NetLib.h b/MdeModulePkg/Include/Library/NetLib.h index 4a621e111e..e621c24c8d 100644 --- a/MdeModulePkg/Include/Library/NetLib.h +++ b/MdeModulePkg/Include/Library/NetLib.h @@ -24,6 +24,8 @@ Abstract: #define _NET_LIB_H_ #include +#include +#include #include #include #include @@ -214,6 +216,8 @@ extern EFI_IPv4_ADDRESS mZeroIp4Addr; #define NET_IS_DIGIT(Ch) (('0' <= (Ch)) && ((Ch) <= '9')) #define NET_ROUNDUP(size, unit) (((size) + (unit) - 1) & (~((unit) - 1))) +#define NET_IS_LOWER_CASE_CHAR(Ch) (('a' <= (Ch)) && ((Ch) <= 'z')) +#define NET_IS_UPPER_CASE_CHAR(Ch) (('A' <= (Ch)) && ((Ch) <= 'Z')) // // Wrap functions to ease the impact of EFI library changes. -- cgit v1.2.3