Functions
Byte Swapping Functions

Functions that are used to ensure that integers passed to the virtual machine are in small endian format. More...

Functions

EAPI void embryo_swap_16 (unsigned short *v)
 Ensures that the given unsigned short integer is in the small endian format. More...
 
EAPI void embryo_swap_32 (unsigned int *v)
 Ensures that the given unsigned integer is in the small endian format. More...
 

Detailed Description

Functions that are used to ensure that integers passed to the virtual machine are in small endian format.

These functions are used to ensure that the virtual machine operates correctly on big endian machines.

Function Documentation

◆ embryo_swap_16()

EAPI void embryo_swap_16 ( unsigned short *  v)

Ensures that the given unsigned short integer is in the small endian format.

Parameters
vPointer to the given integer.

◆ embryo_swap_32()

EAPI void embryo_swap_32 ( unsigned int *  v)

Ensures that the given unsigned integer is in the small endian format.

Parameters
vPointer to the given integer.

Referenced by embryo_program_load().