Home | Previous Page | Next Page   Function Descriptions >

rstoi( )

The rstoi( ) function converts a null-terminated string into a short integer value.

Syntax

mint rstoi(string, ival)
   char *string;
   mint *ival;
string
is a pointer to the null-terminated string to convert.
ival
is a pointer to an mint variable to contain the converted value.

Usage

The legal range of values is from -32767 to 32767. The value -32768 is not valid because this value is a reserved value that indicates null.

If string corresponds to a null integer, ival points to the representation for a SMALLINT null. To convert a string that corresponds to a long integer, use rstol( ). Failure to do so can result in corrupt data representation.

Return Values

=0
The conversion was successful.
!=0
The conversion failed.
Home | [ Top of Page | Previous Page | Next Page | Contents | Index ]