mirror of
https://github.com/Interlisp/maiko.git
synced 2026-01-16 00:04:59 +00:00
12 lines
744 B
C
12 lines
744 B
C
#ifndef MKATOMDEFS_H
|
|
#define MKATOMDEFS_H 1
|
|
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);
|
|
int bytecmp(const char *char1, const char *char2, int len);
|
|
LispPTR compare_lisp_chars(register const char *char1, register const char *char2, register DLword length, DLword fat1, DLword fat2);
|
|
int lispcmp(const DLword *char1, const unsigned char *char2, int len);
|
|
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
|