Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: c6143338b399ee4164321af027144d714597528b authored by cvs2svn on 01 July 1996, 18:34:03 UTC
This commit was manufactured by cvs2svn to create tag 'r14beta1'.
Tip revision: c614333
mwfopenrf.c
/*
** mwfopenrf - Open resource fork as stdio file for CodeWarrior.
**
** Jack Jansen, CWI, August 1995.
*/

#if defined(__MWERKS__) && !defined(USE_GUSI)
#include <stdio.h>
#include <unix.h>
#include <errno.h>
#include "errno_unix.h"

FILE *
fopenRF(name, mode)
	char *name;
	char *mode;
{
	int fd;
	int modebits = -1;
	int extramodebits = 0;
	char *modep;
	
	for(modep=mode; *modep; modep++) {
		switch(*modep) {
		case 'r': modebits = O_RDONLY; break;
		case 'w': modebits = O_WRONLY; extramodebits |= O_CREAT|O_TRUNC; break;
		case 'a': modebits = O_RDONLY;
				  extramodebits |= O_CREAT|O_APPEND;
				  extramodebits &= ~O_TRUNC;
				  break;
		case '+': modebits = O_RDWR; 
				  extramodebits &= ~O_TRUNC;
				  break;
		case 'b': extramodebits |= O_BINARY;
				  break;
		default:
				  errno = EINVAL;
				  return NULL;
		}
	}
	if ( modebits == -1 ) {
		errno = EINVAL;
		return NULL;
	}
	fd = open(name, modebits|extramodebits|O_RSRC);
	if ( fd < 0 )
		return NULL;
	return fdopen(fd, mode);
}
#endif /* __MWERKS__ */
back to top