* COPYING, boot-9.scm, debug.scm, emacs.scm, expect.scm, gtcl.scm,
[bpt/guile.git] / libguile / simpos.c
CommitLineData
0f2d19dd
JB
1/* Copyright (C) 1995,1996 Free Software Foundation, Inc.
2 *
3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation; either version 2, or (at your option)
6 * any later version.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this software; see the file COPYING. If not, write to
15 * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
16 *
17 * As a special exception, the Free Software Foundation gives permission
18 * for additional uses of the text contained in its release of GUILE.
19 *
20 * The exception is that, if you link the GUILE library with other files
21 * to produce an executable, this does not by itself cause the
22 * resulting executable to be covered by the GNU General Public License.
23 * Your use of that executable is in no way restricted on account of
24 * linking the GUILE library code into it.
25 *
26 * This exception does not however invalidate any other reasons why
27 * the executable file might be covered by the GNU General Public License.
28 *
29 * This exception applies only to the code released by the
30 * Free Software Foundation under the name GUILE. If you copy
31 * code from other Free Software Foundation releases into a copy of
32 * GUILE, as the General Public License permits, the exception does
33 * not apply to the code that you add in this way. To avoid misleading
34 * anyone as to the status of such modified files, you must delete
35 * this exception notice from them.
36 *
37 * If you write modifications of your own for GUILE, it is your choice
38 * whether to permit this exception to apply to your modifications.
39 * If you do not wish that, delete this exception notice.
40 */
41\f
42
43#include <stdio.h>
44#include "_scm.h"
95b88819 45
20e6290e
JB
46#include "scmsigs.h"
47#include "simpos.h"
48
95b88819
GH
49#ifdef HAVE_STRING_H
50#include <string.h>
51#endif
0f2d19dd
JB
52#ifdef HAVE_UNISTD_H
53#include <unistd.h>
54#endif
55
56\f
57extern int system();
58\f
59
60#ifndef _Windows
61SCM_PROC(s_system, "system", 1, 0, 0, scm_system);
1cc91f1b 62
0f2d19dd
JB
63SCM
64scm_system(cmd)
65 SCM cmd;
0f2d19dd
JB
66{
67 SCM_ASSERT(SCM_NIMP(cmd) && SCM_ROSTRINGP(cmd), cmd, SCM_ARG1, s_system);
68 if (SCM_ROSTRINGP (cmd))
69 cmd = scm_makfromstr (SCM_ROCHARS (cmd), SCM_ROLENGTH (cmd), 0);
70 scm_ignore_signals();
71# ifdef AZTEC_C
72 cmd = SCM_MAKINUM(Execute(SCM_ROCHARS(cmd), 0, 0));
73# else
74 cmd = SCM_MAKINUM(0L+system(SCM_ROCHARS(cmd)));
75# endif
76 scm_unignore_signals();
77 return cmd;
78}
79#endif
80
81extern char *getenv();
f93ddd39 82SCM_PROC (s_getenv, "getenv", 1, 0, 0, scm_getenv);
1cc91f1b 83
0f2d19dd 84SCM
f93ddd39 85scm_getenv(nam)
0f2d19dd 86 SCM nam;
0f2d19dd
JB
87{
88 char *val;
f93ddd39 89 SCM_ASSERT(SCM_NIMP(nam) && SCM_ROSTRINGP(nam), nam, SCM_ARG1, s_getenv);
0f2d19dd
JB
90 if (SCM_ROSTRINGP (nam))
91 nam = scm_makfromstr (SCM_ROCHARS (nam), SCM_ROLENGTH (nam), 0);
92 val = getenv(SCM_CHARS(nam));
9373b387 93 return (val) ? scm_makfromstr(val, (scm_sizet)strlen(val), 0) : SCM_BOOL_F;
0f2d19dd
JB
94}
95
10a12f9f
JB
96/* I have a feeling this whole arrangement below is a bad idea. One
97 should always test for the presence or absence of a particular
98 feature, instead of checking the system name. Older versions of a
99 system may lack features posessed by new ones, and a feature
100 appearing on one system will soon appear on others. And autoconf
101 provides the mechanisms for detecting features. -JimB */
102
103#ifdef _AIX
104# define SYSTNAME "AIX"
105#endif
0f2d19dd
JB
106#ifdef vms
107# define SYSTNAME "VMS"
108#endif
cda55316 109#if defined (unix) || defined (__unix)
0f2d19dd
JB
110# define SYSTNAME "UNIX"
111#endif
112#ifdef MWC
113# define SYSTNAME "COHERENT"
114#endif
115#ifdef _Windows
116# define SYSTNAME "WINDOWS"
117#else
118# ifdef MSDOS
119# define SYSTNAME "MS-DOS"
120# endif
121#endif
122#ifdef __EMX__
123# define SYSTNAME "OS/2"
124#endif
125#ifdef __IBMC__
126# define SYSTNAME "OS/2"
127#endif
128#ifdef THINK_C
129# define SYSTNAME "THINKC"
130#endif
131#ifdef AMIGA
132# define SYSTNAME "AMIGA"
133#endif
134#ifdef atarist
135# define SYSTNAME "ATARIST"
136#endif
137#ifdef mach
138# define SYSTNAME "MACH"
139#endif
140#ifdef ARM_ULIB
141# define SYSTNAME "ACORN"
142#endif
143
144SCM_PROC(s_software_type, "software-type", 0, 0, 0, scm_software_type);
1cc91f1b 145
0f2d19dd
JB
146SCM
147scm_software_type()
0f2d19dd
JB
148{
149#ifdef nosve
150 return SCM_CAR(scm_intern("nosve", 5));
151#else
152 return SCM_CAR(scm_intern(SYSTNAME, sizeof SYSTNAME/sizeof(char) -1));
153#endif
154}
155
1cc91f1b 156
0f2d19dd
JB
157void
158scm_init_simpos ()
0f2d19dd
JB
159{
160#include "simpos.x"
161}
162