/* BEGIN INCLUDE FILE .... time_info_search.incl.pl1 .... 03/16/83 J Falksen */ /* This include file describes an internal interface mainly used by */ /* convert_date_to_binary_ to rapidly search the words in time_info_. */ /* ** USER PROGRAMS ARE NOT TO USE THIS TABLE. ** */ dcl time_info_$tokens fixed bin ext static; /* reference point for token table */ dcl 1 ti_token based (ti_token_p), 2 count fixed bin, 2 ambig bit (1)aligned, /* 1- str does not have same */ /* ..meaning in all languages */ 2 item (0 refer (ti_token.count)), 3 symbol char (32),/* canonical lowercase form */ 3 list_r bit (18)aligned; /**** list_r is the offset of the item list which goes with symbol. To */ /**** build a pointer to the list, use: */ /**** addrel (addr (time_info_$version), ti_token.list_r (cur_token)) */ dcl ti_token_p ptr; /* = addr (time_info_$tokens) */ dcl item_p ptr, 1 item based (item_p)unal, 2 count fixed bin aligned, /* >1 => diff mean/diff lang */ 2 e (0 refer (item.count)), 3 ambig bit (1), /* 1-same mean/diff lang */ 3 table fixed bin (7) unsigned, /* what table is this */ 3 element fixed bin (10) unsigned, /* which element in table */ 3 in_lang bit (18); /* languages using it */ /**** Note that this last element places a limit of 18 on the */ /**** number of languages which may be defined in the table. */ /* The table name values assigned here are as needed by CDTB */ dcl (Day_table init (1), Language_table init (2), Month_table init (3), Offset_table init (4), Word_table init (5), Zone_table init (6), This_table init (7) /* resides in offset table */ ) fixed bin int static options (constant); dcl mo_name (12) char (3) int static options (constant) init ( "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"); dcl da_name (7) char (3) int static options (constant) init ( "Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun"); dcl the_offset_count fixed bin int static options (constant) init (8); dcl of_name (8) char (12) int static options (constant) init ( "year", "month", "week", "day", "Hour", "Minute", "Second", "Microsecond"); dcl the_word_count fixed bin int static options (constant) init (13); dcl wo_name (13) char (12) int static options (constant) init ( "Before", "Or", "After", "On", "Noon", "Midnight", "Now", "Yesterday", "Today", "Tomorrow", "FiscalWeek", "AM", "PM"); /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ /* NOTE TO MAINTAINER: Before changing this file, see the comments in */ /* time_info_cds.incl.pl1 */ /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ /* END INCLUDE FILE ..... time_info_search.incl.pl1 ..... */ */ ----------------------------------------------------------- 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 */