mirror of
https://github.com/Interlisp/maiko.git
synced 2026-01-20 17:47:48 +00:00
... start by fixing the include files and the fallout in C source from removing includes not directly needed by headers that previously included them.
11 lines
661 B
C
11 lines
661 B
C
#ifndef MKATOMDEFS_H
|
|
#define MKATOMDEFS_H 1
|
|
#include "lispemul.h" /* for LispPTR, DLword */
|
|
DLword compute_hash(const char *char_base, DLword offset, DLword length);
|
|
DLword compute_lisp_hash(const char *char_base, DLword offset, DLword length, DLword fatp);
|
|
LispPTR compare_chars(register const char *char1, register const char *char2, register DLword length);
|
|
LispPTR compare_lisp_chars(register const char *char1, register const char *char2, register DLword length, DLword fat1, DLword fat2);
|
|
LispPTR make_atom(const char *char_base, DLword offset, DLword length, short int non_numericp);
|
|
LispPTR parse_number(const char *char_base, short int length);
|
|
#endif
|