diff options
| -rw-r--r-- | include/test.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/include/test.h b/include/test.h index 1d9c7be3..811f92bf 100644 --- a/include/test.h +++ b/include/test.h @@ -48,6 +48,17 @@ #define FreePool(x) free(x) #define ReallocatePool(old, oldsz, newsz) realloc(old, newsz) +INTN StrnCmp(IN CONST CHAR16 *s1, + IN CONST CHAR16 *s2, + IN UINTN len); +CHAR16 *StrDuplicate(IN CONST CHAR16 *Src); +UINTN StrLen(IN CONST CHAR16 *s1); +UINTN StrSize(IN CONST CHAR16 *s1); +VOID StrCat(IN CHAR16 *Dest, IN CONST CHAR16 *Src); +CHAR16 *DevicePathToStr(EFI_DEVICE_PATH *DevPath); + +#define CompareGuid(a, b) memcmp(a, b, sizeof(a)) + extern int debug; #ifdef dprint #undef dprint |
