Cyclone Scheme  0.9
#define make_utf8_string_noalloc (   cs,
  s,
  length 
)
Value:
{ cs.hdr.mark = gc_color_red; cs.hdr.grayed = 0; \
cs.tag = string_tag; cs.len = length; \
cs.num_cp = length; \
cs.str = s; }
int len
Definition: types.h:813
#define gc_color_red
Definition: types.h:265
Definition: types.h:56
unsigned char grayed
Definition: types.h:241
The string type.
Definition: types.h:809
unsigned char mark
Definition: types.h:240
gc_header_type hdr
Definition: types.h:810

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