1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-04-15 23:51:44 +00:00

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.
This commit is contained in:
Nick Briggs
2022-08-14 21:43:48 -07:00
parent 813d2aa2b5
commit 4a02a1a24d
3 changed files with 6 additions and 6 deletions

View File

@@ -2,7 +2,7 @@
#define LISP2CDEFS_H 1
#include "lispemul.h" /* for LispPTR */
int LispStringP(LispPTR object);
int LispStringLength(LispPTR lispstring);
int LispStringSimpleLength(LispPTR lispstring);
void LispStringToCStr(LispPTR lispstring, char *cstring);
int LispIntToCInt(LispPTR lispint);
LispPTR CIntToLispInt(int cint);