1 /***** BEGIN INCLUDE FILE lisp_string_fmt.incl.pl1 *****
 2    describes format of storage for lisp
 3    character strings.
 4    D. Reed 4/1/71 */
 5 
 6 dcl 1 lisp_string based aligned,
 7       2 string_length fixed bin,
 8       2 string char(1 refer(string_length));
 9 
10 /***** END INCLUDE FILE lisp_string_fmt.incl.pl1 */