1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-01-13 15:18:14 +00:00
Interlisp.maiko/inc/lisp2cdefs.h
Nick Briggs 4a02a1a24d Rename lisp2c's LispStringLength to LispStringSimpleLength
Avoid confusion with the LispStringLength definition in locfile.h
    This lisp2c function ONLY looks at the fillpointer for the length.
2022-08-14 21:43:48 -07:00

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