version 1.26, 2006/02/08 02:11:19 |
version 1.28, 2010/12/25 23:10:15 |
|
|
* 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.25 2004/11/16 01:47:31 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" |
|
#include <string.h> |
#if !defined(VISUAL) && defined(DO_PLOT) |
#if !defined(VISUAL) && defined(DO_PLOT) |
#include <X11/Xlib.h> |
#include <X11/Xlib.h> |
#include <X11/cursorfont.h> |
#include <X11/cursorfont.h> |
#endif |
#endif |
|
|
#if defined(VISUAL) |
#if defined(VISUAL) |
|
#include <direct.h> |
#include <stdlib.h> |
#include <stdlib.h> |
#include <windows.h> |
#include <windows.h> |
|
#else |
|
#include <unistd.h> |
|
#include <sys/param.h> |
#endif |
#endif |
|
|
|
void Pgetcwd(), Pchdir(); |
void Pset_secure_mode(); |
void Pset_secure_mode(); |
void Pset_secure_flag(); |
void Pset_secure_flag(); |
void Pquit(), Pdebug(), Pnmono(), Pnez(), Popt(), Pshell(), Pheap(); |
void Pquit(), Pdebug(), Pnmono(), Pnez(), Popt(), Pshell(), Pheap(); |
|
|
void delete_history(int,int); |
void delete_history(int,int); |
|
|
struct ftab misc_tab[] = { |
struct ftab misc_tab[] = { |
|
{"pwd",Pgetcwd,0}, |
|
{"chdir",Pchdir,1}, |
{"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 117 struct ftab misc_tab[] = { |
|
Line 125 struct ftab misc_tab[] = { |
|
#endif |
#endif |
{0,0,0}, |
{0,0,0}, |
}; |
}; |
|
|
|
void Pgetcwd(STRING *rp) |
|
{ |
|
char *r; |
|
#if defined(VISUAL) |
|
char buf[_MAX_PATH]; |
|
_getcwd(buf, _MAX_PATH); |
|
#else |
|
char buf[MAXPATHLEN]; |
|
getcwd(buf, MAXPATHLEN); |
|
#endif |
|
r = (char *)MALLOC_ATOMIC(strlen(buf)+1); |
|
strcpy(r,buf); |
|
MKSTR(*rp,r); |
|
} |
|
|
|
void Pchdir(NODE arg, Q *rp) |
|
{ |
|
char *dir = BDY((STRING)ARG0(arg)); |
|
#if defined(VISUAL) |
|
int status = _chdir(dir); |
|
#else |
|
int status = chdir(dir); |
|
#endif |
|
STOQ(status,*rp); |
|
} |
|
|
void Pset_secure_mode(NODE arg,Q *rp) |
void Pset_secure_mode(NODE arg,Q *rp) |
{ |
{ |