You can try AsciiValueToString()

The MdePkg is like the edk2 DDK, so the libraries in the MdePkg are the best 
place to look for generic stuff. In this case these are the best two libraries 
to look at:

https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2/MdePkg/Include/Library/PrintLib.h

Some lower level functions that only operate on memory can be found here:
https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2/MdePkg/Include/Library/BaseLib.h

The thing to remember is the edk2 uses Print() and NOT printf(). Print, and EFI 
in general, default to Unicode so a character is of type CHAR16. Thus %s is 
unicode and %a is ASCII. 

Andrew Fish


On Aug 8, 2012, at 7:40 AM, Rafael Machado wrote:

> Hi everyone.
> 
> I'm having a problem here and I need some help.
> I need to save some int values to a char array and them show to the user.
> 
> Is there some function similar to the oold ITOA c function at UDK ? I 
> searched but didn't find nothing.
> 
> Thanks and Regards
> Rafael R Machado
> ------------------------------------------------------------------------------
> Live Security Virtual Conference
> Exclusive live event will cover all the ways today's security and 
> threat landscape has changed and how IT managers can respond. Discussions 
> will include endpoint security, mobile security and the latest in malware 
> threats. 
> http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/_______________________________________________
> edk2-devel mailing list
> [email protected]
> https://lists.sourceforge.net/lists/listinfo/edk2-devel

------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
_______________________________________________
edk2-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/edk2-devel

Reply via email to