Greatly improved performance of equal for string like things.

This commit is contained in:
Simon Brooke 2026-02-25 22:10:37 +00:00
parent 90e862cc59
commit ffceda5edc
3 changed files with 39 additions and 16 deletions

View file

@ -150,7 +150,7 @@ struct cons_pointer c_car( struct cons_pointer arg ) {
/**
* Implementation of cdr in C. If arg is not a sequence, or the current user is
* not authorised to read it,does not error but returns nil.
* not authorised to read it, does not error but returns nil.
*/
struct cons_pointer c_cdr( struct cons_pointer arg ) {
struct cons_pointer result = NIL;