cvmod.c
上传用户:xiejiait
上传日期:2007-01-06
资源大小:881k
文件大小:2k
源码类别:

SCSI/ASPI

开发平台:

MultiPlatform

  1. /* @(#)cvmod.c 2.4 98/09/05 Copyright 1986, 1995 J. Schilling */
  2. /*
  3.  * Copyright (c) 1986, 1995 J. Schilling
  4.  */
  5. /*
  6.  * This program is free software; you can redistribute it and/or modify
  7.  * it under the terms of the GNU General Public License as published by
  8.  * the Free Software Foundation; either version 2, or (at your option)
  9.  * any later version.
  10.  *
  11.  * This program is distributed in the hope that it will be useful,
  12.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14.  * GNU General Public License for more details.
  15.  *
  16.  * You should have received a copy of the GNU General Public License
  17.  * along with this program; see the file COPYING.  If not, write to
  18.  * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  19.  */
  20. #include <stdio.h>
  21. #include "io.h"
  22. #ifndef O_BINARY
  23. #define O_BINARY 0
  24. #endif
  25. int _cvmod(mode, omode, flag)
  26. const char *mode;
  27. int *omode;
  28. int *flag;
  29. {
  30. while (*mode){
  31. switch (*mode) {
  32. case 'r':   *omode |= O_RDONLY; *flag |= FI_READ; break;
  33. case 'w':   *omode |= O_WRONLY; *flag |= FI_WRITE; break;
  34. case 'e':   *omode |= O_EXCL; break;
  35. case 'c':   *omode |= O_CREAT; *flag |= FI_CREATE; break;
  36. case 't':   *omode |= O_TRUNC; *flag |= FI_TRUNC; break;
  37. case 'a':   *omode |= O_APPEND; *flag |= FI_APPEND; break;
  38. case 'u': *flag |= FI_UNBUF; break;
  39. /* dummy on UNIX */
  40. case 'b':   *omode |= O_BINARY; *flag |= FI_BINARY; break;
  41. default:    raisecond(_badmode, 0L);
  42.     return 0;
  43. }
  44. mode++;
  45. }
  46. if (*flag & FI_READ && *flag & FI_WRITE) {
  47. *omode &= ~(O_RDONLY|O_WRONLY);
  48. *omode |= O_RDWR;
  49. }
  50. return 1;
  51. }