Cyclone Scheme  0.4

◆ make_string_noalloc

#define make_string_noalloc (   cs,
  s,
  length 
)
Value:
{ cs.hdr.mark = gc_color_red; cs.hdr.grayed = 0; \
cs.tag = string_tag; cs.len = length; \
cs.str = s; }
int len
Definition: types.h:705
#define gc_color_red
Definition: types.h:239
Definition: types.h:54
unsigned char grayed
Definition: types.h:215
The string type.
Definition: types.h:702
unsigned char mark
Definition: types.h:214
gc_header_type hdr
Definition: types.h:703

Create a string object using the given C string and length. No allocation is done for the given C string.