Difference between revisions of "HexToNibble"
From WikiPrizm
Jump to navigationJump to search (Created page with "{{syscall | name = HexToNibble | header = fxcg/misc.h | index = 0x1343 | signature = void HexToNibble(unsigned char value, unsigned char* result) | synopsis = The exact functi...") |
|||
Line 4: | Line 4: | ||
| index = 0x1343 | | index = 0x1343 | ||
| signature = void HexToNibble(unsigned char value, unsigned char* result) | | signature = void HexToNibble(unsigned char value, unsigned char* result) | ||
− | | synopsis = | + | | synopsis = Converts the hexadecimal representation of a nibble to a nibble. |
− | | parameters = | + | | parameters = * '''value''' - byte containing the hexadecimal letter that represents the nibble. |
+ | * '''result''' - pointer to <tt>unsigned char</tt> that will hold the conversion result. | ||
}} | }} |
Latest revision as of 13:46, 31 July 2014
Synopsis
Header: fxcg/misc.h
Syscall index: 0x1343
Function signature: void HexToNibble(unsigned char value, unsigned char* result)
Converts the hexadecimal representation of a nibble to a nibble.
Parameters
- value - byte containing the hexadecimal letter that represents the nibble.
- result - pointer to unsigned char that will hold the conversion result.