COMPILATION LISTING OF SEGMENT convert_word_char_ Compiled by: Multics PL/I Compiler, Release 27d, of October 11, 1982 Compiled at: Honeywell LISD Phoenix, System M Compiled on: 11/15/82 1748.9 mst Mon Options: optimize map 1 /* *********************************************************** 2* * * 3* * Copyright, (C) Honeywell Information Systems Inc., 1982 * 4* * * 5* *********************************************************** */ 6 convert_word_char_: proc (word, hyphens, last, result); 7 dcl i fixed bin; 8 dcl result char (*) varying; 9 dcl word char (*); 10 dcl hyphens (*) bit (1) aligned; 11 dcl last fixed bin; 12 if last < 0 13 then 14 do; 15 result = word || "**"; 16 return; 17 end; 18 result = ""; 19 do i = 0 to length (word); 20 if i ^= 0 21 then 22 do; 23 result = result || substr (word, i, 1); 24 if hyphens (i) then result = result || "-"; 25 end; 26 if last > 0 & last = i+1 27 then result = result || "*"; 28 end; 29 end; SOURCE FILES USED IN THIS COMPILATION. LINE NUMBER DATE MODIFIED NAME PATHNAME 0 11/15/82 1529.7 convert_word_char_.pl1 >dumps>old>recomp>convert_word_char_.pl1 NAMES DECLARED IN THIS COMPILATION. IDENTIFIER OFFSET LOC STORAGE CLASS DATA TYPE ATTRIBUTES AND REFERENCES (* indicates a set context) NAMES DECLARED BY DECLARE STATEMENT. hyphens parameter bit(1) array dcl 10 ref 6 24 i 000100 automatic fixed bin(17,0) dcl 7 set ref 19* 20 23 24 26* last parameter fixed bin(17,0) dcl 11 ref 6 12 26 26 result parameter varying char dcl 8 set ref 6 15* 18* 23* 23 24* 24 26* 26 word parameter char unaligned dcl 9 ref 6 15 19 23 NAME DECLARED BY EXPLICIT CONTEXT. convert_word_char_ 000014 constant entry external dcl 6 NAMES DECLARED BY CONTEXT OR IMPLICATION. length builtin function ref 19 substr builtin function ref 23 STORAGE REQUIREMENTS FOR THIS PROGRAM. Object Text Link Symbol Defs Static Start 0 0 212 222 163 222 Length 364 163 10 126 26 0 BLOCK NAME STACK SIZE TYPE WHY NONQUICK/WHO SHARES STACK FRAME convert_word_char_ 69 external procedure is an external procedure. STORAGE FOR AUTOMATIC VARIABLES. STACK FRAME LOC IDENTIFIER BLOCK NAME convert_word_char_ 000100 i convert_word_char_ THE FOLLOWING EXTERNAL OPERATORS ARE USED BY THIS PROGRAM. alloc_cs return shorten_stack ext_entry_desc NO EXTERNAL ENTRIES ARE CALLED BY THIS PROGRAM. NO EXTERNAL VARIABLES ARE USED BY THIS PROGRAM. LINE LOC LINE LOC LINE LOC LINE LOC LINE LOC LINE LOC LINE LOC 6 000007 12 000034 15 000037 16 000062 18 000064 19 000066 20 000077 23 000101 24 000114 26 000136 28 000155 29 000157 ----------------------------------------------------------- Historical Background This edition of the Multics software materials and documentation is provided and donated to Massachusetts Institute of Technology by Group BULL including BULL HN Information Systems Inc. as a contribution to computer science knowledge. This donation is made also to give evidence of the common contributions of Massachusetts Institute of Technology, Bell Laboratories, General Electric, Honeywell Information Systems Inc., Honeywell BULL Inc., Groupe BULL and BULL HN Information Systems Inc. to the development of this operating system. Multics development was initiated by Massachusetts Institute of Technology Project MAC (1963-1970), renamed the MIT Laboratory for Computer Science and Artificial Intelligence in the mid 1970s, under the leadership of Professor Fernando Jose Corbato. Users consider that Multics provided the best software architecture for managing computer hardware properly and for executing programs. Many subsequent operating systems incorporated Multics principles. Multics was distributed in 1975 to 2000 by Group Bull in Europe , and in the U.S. by Bull HN Information Systems Inc., as successor in interest by change in name only to Honeywell Bull Inc. and Honeywell Information Systems Inc. . ----------------------------------------------------------- Permission to use, copy, modify, and distribute these programs and their documentation for any purpose and without fee is hereby granted,provided that the below copyright notice and historical background appear in all copies and that both the copyright notice and historical background and this permission notice appear in supporting documentation, and that the names of MIT, HIS, BULL or BULL HN not be used in advertising or publicity pertaining to distribution of the programs without specific prior written permission. Copyright 1972 by Massachusetts Institute of Technology and Honeywell Information Systems Inc. Copyright 2006 by BULL HN Information Systems Inc. Copyright 2006 by Bull SAS All Rights Reserved