/* fnisrel.c (emx+gcc) -- Copyright (c) 1993 by Eberhard Mattes */

#include <stdlib.h>
#include <ctype.h>

int _fnisrel (const char *name)
{
  return (!(*name == '/' || *name == '\\'
            || (isalpha ((unsigned char)name[0]) && name[1] == ':')));
}
