[BACK]Return to main.cpp CVS log [TXT][DIR] Up to [local] / OpenXM / src / ox_ntl

Diff for /OpenXM/src/ox_ntl/main.cpp between version 1.1 and 1.2

version 1.1, 2003/11/03 03:11:21 version 1.2, 2003/11/08 12:34:00
Line 1 
Line 1 
 /* $OpenXM$ */  /* $OpenXM: OpenXM/src/ox_ntl/main.cpp,v 1.1 2003/11/03 03:11:21 iwane Exp $ */
   
 #include "ox_toolkit.h"  #include "ox_toolkit.h"
 #include "oxserv.h"  #include "oxserv.h"
   #include "oxstack.h"
 #include "ntl.h"  #include "ntl.h"
   
 #define VERSION 0x00000001  #define VERSION 0x00000001
 #define ID_STRING "$Revision$"  #define ID_STRING "$Revision$"
   
 #if 1  #if 0
 extern "C" {  extern "C" {
 void dprintf(const char *, ...);  void dprintf(const char *, ...);
 }  }
 #endif  #endif
   
 static cmo *  static void
 ntl_executeFunction(const char *func, cmo **arg, int argc)  ntl_executeFunction(const char *func, cmo **arg, int argc)
 {  {
           cmo *ans;
         if (strcmp(func, "fctr") == 0) {          if (strcmp(func, "fctr") == 0) {
                 return (ntl_fctr(arg, argc));                  ans = ntl_fctr(arg, argc);
                   oxstack_push(ans);
                   return ;
         }          }
   
         return (NULL);          oxstack_push((cmo *)new_cmo_error2((cmo *)new_cmo_string("Unknown Function")));
 }  }
   
   

Legend:
Removed from v.1.1  
changed lines
  Added in v.1.2

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