mirror of https://github.com/acidanthera/audk.git
10 lines
137 B
C
10 lines
137 B
C
|
#include "XenBusDxe.h"
|
||
|
|
||
|
CHAR8*
|
||
|
AsciiStrDup (
|
||
|
IN CONST CHAR8* Str
|
||
|
)
|
||
|
{
|
||
|
return AllocateCopyPool (AsciiStrSize (Str), Str);
|
||
|
}
|