6.2.0855
C"
c-quote
CORE EXT
Interpretation:
Interpretation semantics for this word are undefined.

Compilation:
( "ccc<quote>" -- )

Parse ccc delimited by " (double-quote) and append the run-time semantics given below to the current definition.

Run-time:
( -- c-addr )

Return c-addr, a counted string consisting of the characters ccc. A program shall not alter the returned string.

Rationale:
Typical use: : X ... C" ccc" ... ;

See: A.3.1.3.4 Counted strings.

Testing:
T{ : cq1 C" 123" ; -> }T
T{ : cq2 C" " ;    -> }T
T{ cq1 COUNT EVALUATE -> 123 }T
T{ cq2 COUNT EVALUATE ->     }T