*********
int2hex()
*********

Purpose
=======

int2hex(num)

Returns a hexadecimal number string of a given positive integer num.


Example
=======

In the following example the hexadecimal number of 23 is returned
as a string.

.. code-block:: none

   int2hex(23)


