mirror of
https://github.com/Interlisp/maiko.git
synced 2026-01-13 15:18:14 +00:00
Avoid confusion with the LispStringLength definition in locfile.h
This lisp2c function ONLY looks at the fillpointer for the length.
10 lines
299 B
C
10 lines
299 B
C
#ifndef LISP2CDEFS_H
|
|
#define LISP2CDEFS_H 1
|
|
#include "lispemul.h" /* for LispPTR */
|
|
int LispStringP(LispPTR object);
|
|
int LispStringSimpleLength(LispPTR lispstring);
|
|
void LispStringToCStr(LispPTR lispstring, char *cstring);
|
|
int LispIntToCInt(LispPTR lispint);
|
|
LispPTR CIntToLispInt(int cint);
|
|
#endif
|