NAME

sepwarn - print a string and return a specified value


SYNOPSIS

int sepwarn(warn,format,value1,value2,...)


INPUT PARAMETERS

warn - int
      return value to issue
format - string
      format statement
value* - void
      additional return values


DESCRIPTION

This function issues a warning message and returns (warn) to the calling program

From fortran you can only specify a string to print, no format control is available.


COMMENTS

From C:

sepwarn(format, value1, value2, ...) or return(sepwarn,format, value1, value2) char *format

From Fortran:

call sepwarn('warning message') or stat=sepwarn('warning message')


SEE ALSO

the seperr manpage


LIBRARY

sep