[BACK]Return to file.c CVS log [TXT][DIR] Up to [local] / OpenXM_contrib2 / asir2000 / builtin

Diff for /OpenXM_contrib2/asir2000/builtin/file.c between version 1.17 and 1.18

version 1.17, 2003/02/14 22:29:07 version 1.18, 2003/11/01 23:58:43
Line 45 
Line 45 
  * DEVELOPER SHALL HAVE NO LIABILITY IN CONNECTION WITH THE USE,   * DEVELOPER SHALL HAVE NO LIABILITY IN CONNECTION WITH THE USE,
  * PERFORMANCE OR NON-PERFORMANCE OF THE SOFTWARE.   * PERFORMANCE OR NON-PERFORMANCE OF THE SOFTWARE.
  *   *
  * $OpenXM: OpenXM_contrib2/asir2000/builtin/file.c,v 1.16 2002/10/01 09:58:48 noro Exp $   * $OpenXM: OpenXM_contrib2/asir2000/builtin/file.c,v 1.17 2003/02/14 22:29:07 ohara Exp $
 */  */
 #include "ca.h"  #include "ca.h"
 #include "parse.h"  #include "parse.h"
Line 131  void Popen_file(NODE arg,Q *rp)
Line 131  void Popen_file(NODE arg,Q *rp)
         if ( i == BUFSIZ )          if ( i == BUFSIZ )
                 error("open_file : too many open files");                  error("open_file : too many open files");
         name = BDY((STRING)ARG0(arg));          name = BDY((STRING)ARG0(arg));
         if ( argc(arg) == 2 ) {          if (strcmp(name,"unix://stdin") == 0) {
             fp = stdin;
           }else if (strcmp(name,"unix://stdout") == 0) {
             fp = stdout;
       }else if (strcmp(name,"unix://stderr") == 0) {
             fp = stderr;
       }else{
             if ( argc(arg) == 2 ) {
                 asir_assert(ARG1(arg),O_STR,"open_file");                  asir_assert(ARG1(arg),O_STR,"open_file");
                 fp = fopen(name,BDY((STRING)ARG1(arg)));                  fp = fopen(name,BDY((STRING)ARG1(arg)));
         } else            } else
                 fp = fopen(name,"r");                  fp = fopen(name,"r");
       }
         if ( !fp ) {          if ( !fp ) {
                 sprintf(errbuf,"open_file : cannot open \"%s\"",name);                  sprintf(errbuf,"open_file : cannot open \"%s\"",name);
                 error(errbuf);                  error(errbuf);

Legend:
Removed from v.1.17  
changed lines
  Added in v.1.18

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>