Compiles again, now with bootstrap-layer print implemented, but not yet tested.
To get print implemented, I also had to implement a lot of other things.
This commit is contained in:
parent
2b22780ccf
commit
364d7d2c7b
23 changed files with 1616 additions and 57 deletions
32
src/c/ops/string_ops.h
Normal file
32
src/c/ops/string_ops.h
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
/**
|
||||
* ops/string_ops.h
|
||||
*
|
||||
* Operations on a Lisp string.
|
||||
*
|
||||
* (c) 2026 Simon Brooke <simon@journeyman.cc>
|
||||
* Licensed under GPL version 2.0, or, at your option, any later version.
|
||||
*/
|
||||
|
||||
#ifndef __psse_ops_string_ops_h
|
||||
#define __psse_ops_string_ops_h
|
||||
|
||||
/*
|
||||
* wide characters
|
||||
*/
|
||||
#include <wchar.h>
|
||||
#include <wctype.h>
|
||||
|
||||
struct pso_pointer make_string_like_thing( wint_t c, struct pso_pointer tail,
|
||||
char* tag );
|
||||
|
||||
struct pso_pointer make_string( wint_t c, struct pso_pointer tail );
|
||||
|
||||
struct pso_pointer make_keyword( wint_t c, struct pso_pointer tail );
|
||||
|
||||
struct pso_pointer make_symbol( wint_t c, struct pso_pointer tail );
|
||||
|
||||
struct pso_pointer c_string_to_lisp_string( wchar_t *string );
|
||||
|
||||
struct pso_pointer c_string_to_lisp_keyword( wchar_t *symbol );
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue