Main Page   Compound List   File List   Compound Members   File Members  

rr_libs/rr_fopen.c

Go to the documentation of this file.
00001 /* rr_fopen(): call fopen and quit if it fails */
00002 /*=====================================================================
00003                 =======   COPYRIGHT NOTICE   =======
00004 Copyright (C) 1994, Carnegie Mellon University and Ronald Rosenfeld.
00005 All rights reserved.
00006 
00007 This software is made available for research purposes only.  It may be
00008 redistributed freely for this purpose, in full or in part, provided
00009 that this entire copyright notice is included on any copies of this
00010 software and applications and derivations thereof.
00011 
00012 This software is provided on an "as is" basis, without warranty of any
00013 kind, either expressed or implied, as to any matter including, but not
00014 limited to warranty of fitness of purpose, or merchantability, or
00015 results obtained from use of this software.
00016 ======================================================================*/
00017 
00018 #include <stdio.h>
00019 #include "general.h"
00020 
00025 FILE *rr_fopen(char *filename, char *mode)
00026 {
00027   FILE *fp;
00028   fp = fopen(filename,mode);
00029   if (!fp) 
00030     quit(-1,"rr_fopen: problems opening %s for \"%s\".\n", filename, mode);
00031   return(fp);
00032 }

Generated on Tue Dec 21 13:54:46 2004 by doxygen1.2.18