{
{   The purpose  of  this  request  is  to  convert  an  integer to its string
{ representation in a specified radix.  The result is right justified  in  the
{ returned  string.   If the integer is negative, a minus sign (-) is included
{ in the result either just to the left of the converted integer if  the  fill
{ character is a space, or as the leftmost character of the result string.  If
{ the specified radix is greater than ten and the leftmost digit of the result
{ is  greater  than  nine, then a leading zero digit is added to the result if
{ the result string is long enough to hold it.
{
{       CLP$CONVERT_INTEGER_TO_RJSTRING (INT, RADIX, INCLUDE_RADIX_SPECIFIER,
{         FILL_CHARACTER, STR, STATUS)
{
{ INT: (input) This parameter specifies the integer to be converted.
{
{ RADIX:  (input)  This  parameter  specifies the radix in which the integer's
{       value is to be represented.
{
{ INCLUDE_RADIX_SPECIFIER:  (input)  This  parameter  specifies  whether   the
{       representation  of the radix is to be included in the resulting string
{       -- e.g.  (16) for a number with a radix of 16.
{
{ FILL_CHARACTER: (input) This parameter specifies the character used to  fill
{       unused positions in the returned string.
{
{ STR: (output)  This  parameter  specifies  the  string representation of the
{       integer.
{
{ STATUS: (output) This parameter specifies the request status.
{       CONDITIONS: cle$string_too_short
{       IDENTIFIER: 'CL'
{
