mirror of
https://github.com/Interlisp/maiko.git
synced 2026-01-14 15:36:34 +00:00
Combines the array..array6 files and their associated header files into new arrayops.c/arrayopsdefs.h files, and adjusts the CMakeLists.txt and old-style makefile-tail to reflect these changes.
11 lines
524 B
C
11 lines
524 B
C
#ifndef ARRAYOPSDEFS_H
|
|
#define ARRAYOPSDEFS_H 1
|
|
#include "lispemul.h" /* for LispPTR */
|
|
LispPTR N_OP_misc3(LispPTR baseL, LispPTR typenumber, LispPTR inx, int alpha);
|
|
LispPTR N_OP_misc4(LispPTR data, LispPTR base, LispPTR typenumber, LispPTR inx, int alpha);
|
|
LispPTR N_OP_aref1(LispPTR arrayarg, LispPTR inx);
|
|
LispPTR N_OP_aset1(LispPTR data, LispPTR arrayarg, int inx);
|
|
LispPTR N_OP_aref2(LispPTR arrayarg, LispPTR inx0, LispPTR inx1);
|
|
LispPTR N_OP_aset2(LispPTR data, LispPTR arrayarg, LispPTR inx0, LispPTR inx1);
|
|
#endif
|