Directory/RB_Is_PathCharacter [ Functions ]

FUNCTION

Test if a character is part of the group of characters that you would normally find in a path.

SYNOPSIS

static int RB_Is_PathCharacter(
    int c )

INPUTS

c -- the character to be tested.

RESULT

TRUE -- it is a path character. FALSE -- it is not.

SOURCE

{
    return ( ( c == ':' ) || ( c == '/' ) );
}