sepwarn - print a string and return a specified value
int sepwarn(warn,format,value1,value2,...)
return value to issue
format statement
additional return values
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.
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')
sep