EFUN: stringp

SYNTAX:
int stringp( arg );
  mixed arg;

DESCRIPTION:
Stringp is used to determine whether arg is of type string.

RETURN VALUE:
If 'arg' is of type string it returns 1, and 0 if this is not the case.

SEE ALSO:
intp
objectp
mappingp
pointerp
floatp

EXAMPLE:
int i;

i =  intp( this_player()->query_name() );
// i is now 1.
