• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #include "XenBusDxe.h"
2 
3 CHAR8*
AsciiStrDup(IN CONST CHAR8 * Str)4 AsciiStrDup (
5   IN CONST CHAR8* Str
6   )
7 {
8   return AllocateCopyPool (AsciiStrSize (Str), Str);
9 }
10