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

Diff for /OpenXM_contrib2/asir2000/builtin/miscf.c between version 1.27 and 1.28

version 1.27, 2008/08/26 16:17:03 version 1.28, 2010/12/25 23:10:15
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/miscf.c,v 1.26 2006/02/08 02:11:19 noro Exp $   * $OpenXM: OpenXM_contrib2/asir2000/builtin/miscf.c,v 1.27 2008/08/26 16:17:03 ohara Exp $
 */  */
 #include "ca.h"  #include "ca.h"
 #include "parse.h"  #include "parse.h"
Line 56 
Line 56 
 #endif  #endif
   
 #if defined(VISUAL)  #if defined(VISUAL)
   #include <direct.h>
 #include <stdlib.h>  #include <stdlib.h>
 #include <windows.h>  #include <windows.h>
 #else  #else
Line 84  void Ptest();
Line 85  void Ptest();
 void delete_history(int,int);  void delete_history(int,int);
   
 struct ftab misc_tab[] = {  struct ftab misc_tab[] = {
 #if !defined(VISUAL)  
         {"pwd",Pgetcwd,0},          {"pwd",Pgetcwd,0},
         {"chdir",Pchdir,1},          {"chdir",Pchdir,1},
 #endif  
         {"set_secure_mode",Pset_secure_mode,-1},          {"set_secure_mode",Pset_secure_mode,-1},
         {"set_secure_flag",Pset_secure_flag,-2},          {"set_secure_flag",Pset_secure_flag,-2},
         {"module_list",Pmodule_list,0},          {"module_list",Pmodule_list,0},
Line 127  struct ftab misc_tab[] = {
Line 126  struct ftab misc_tab[] = {
         {0,0,0},          {0,0,0},
 };  };
   
 #if !defined(VISUAL)  
 void Pgetcwd(STRING *rp)  void Pgetcwd(STRING *rp)
 {  {
         char *r;          char *r;
   #if defined(VISUAL)
           char buf[_MAX_PATH];
           _getcwd(buf, _MAX_PATH);
   #else
         char buf[MAXPATHLEN];          char buf[MAXPATHLEN];
         getcwd(buf, MAXPATHLEN);          getcwd(buf, MAXPATHLEN);
   #endif
         r = (char *)MALLOC_ATOMIC(strlen(buf)+1);          r = (char *)MALLOC_ATOMIC(strlen(buf)+1);
         strcpy(r,buf);          strcpy(r,buf);
         MKSTR(*rp,r);          MKSTR(*rp,r);
Line 141  void Pgetcwd(STRING *rp)
Line 144  void Pgetcwd(STRING *rp)
 void Pchdir(NODE arg, Q *rp)  void Pchdir(NODE arg, Q *rp)
 {  {
         char *dir = BDY((STRING)ARG0(arg));          char *dir = BDY((STRING)ARG0(arg));
   #if defined(VISUAL)
           int status = _chdir(dir);
   #else
         int status = chdir(dir);          int status = chdir(dir);
   #endif
         STOQ(status,*rp);          STOQ(status,*rp);
 }  }
 #endif  
   
 void Pset_secure_mode(NODE arg,Q *rp)  void Pset_secure_mode(NODE arg,Q *rp)
 {  {

Legend:
Removed from v.1.27  
changed lines
  Added in v.1.28

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