1/* -----------------------------------------------------------------------------
2 * See the LICENSE file for information on copyright, usage and redistribution
3 * of SWIG, and the README file for authors - http://www.swig.org/release.html.
4 *
5 * clisp.swg
6 * ----------------------------------------------------------------------------- */
7
8/* Define a C preprocessor symbol that can be used in interface files
9   to distinguish between the SWIG language modules. */
10
11#define SWIG_CLISP
12
13/* Typespecs for basic types. */
14
15%typemap(in) void "NIL";
16
17%typemap(in) char "character";
18%typemap(in) char * "ffi:c-string";
19%typemap(in) unsigned char "ffi:uchar";
20%typemap(in) signed char "ffi:char";
21
22%typemap(in) short "ffi:short";
23%typemap(in) signed short "ffi:short";
24%typemap(in) unsigned short "ffi:ushort";
25
26%typemap(in) int "ffi:int";
27%typemap(in) signed int "ffi:int";
28%typemap(in) unsigned int "ffi:uint";
29
30%typemap(in) long "ffi:long";
31%typemap(in) signed long "ffi:long";
32%typemap(in) unsigned long "ffi:ulong";
33
34%typemap(in) float "SINGLE-FLOAT";
35%typemap(in) double "DOUBLE-FLOAT";
36