Initial commit, 3-52-19 alpha
[cls.git] / src / c / macintosh / xlsx.h
blob7e9b6765258b0372ce1e36c5107c7be28558432c
1 /* xlsx.h - Include file for external Macintosh routines. */
2 /* XLISP-STAT 2.1 Copyright (c) 1990, by Luke Tierney */
3 /* Additions to Xlisp 2.1, Copyright (c) 1989 by David Michael Betz */
4 /* You may give out copies of this software; for conditions see the */
5 /* file COPYING included with this distribution. */
7 /* Calling conventions are based on the conventions given in the New S */
8 /* book. */
9 typedef struct {
10 int argc;
11 char **argv;
12 } XLSXblock;
14 #define XLSXargc(p) ((p)->argc)
15 #define XLSXargv(p, i) ((p)->argv[(i)])