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