27 lines
807 B
C
27 lines
807 B
C
#include "scheme48.h"
|
|
|
|
/* StobData is used by fdports.c. It should be changed over to STOB_REF
|
|
** by removing the extra indirection. */
|
|
#define StobData(x) (S48_ADDRESS_AFTER_HEADER(x, s48_value))
|
|
|
|
#define IsChar(x) ((((long) x) & 0xff) == S48_CHAR)
|
|
//JMG: untested !!
|
|
|
|
#define StrByte(x, i) ((i) + S48_ADDRESS_AFTER_HEADER((x), char))
|
|
#define cig_string_body(x) (S48_ADDRESS_AFTER_HEADER((x), char))
|
|
|
|
#define AlienVal(x) (S48_STOB_REF((x),0))
|
|
|
|
#define ENTER_BOOLEAN(x) (x ? S48_TRUE : S48_FALSE)
|
|
|
|
extern char *scheme2c_strcpy(s48_value sstr);
|
|
|
|
extern s48_value strlen_or_false(const char *s);
|
|
|
|
extern char *copystring_or_die(const char *);
|
|
extern char *copystring(char *, const char *);
|
|
|
|
extern s48_value strlen_or_false(const char *);
|
|
|
|
extern void cig_check_nargs(int arity, int nargs, const char *fn);
|