1 /* ====== BEGIN INCLUDE SEGMENT apl_scan_info.incl.pl1 ==================================== */ 2 3 /* entries */ 4 5 declare apl_editor_scan_ entry (char (*) aligned, fixed bin (21), fixed bin (21), fixed bin (21), fixed bin, ptr unal); 6 declare apl_scan_ entry (char (*) aligned, fixed bin (21), fixed bin (21), fixed bin (21), fixed bin, ptr unal); 7 8 /* internal static */ 9 10 declare (NO_TOKEN init (0), /* no token found */ 11 DELIMITER_TOKEN init (1), /* single character token */ 12 NAME_TOKEN init (2), /* workspace, symbol, group, or function name */ 13 INTEGER_TOKEN init (3), /* positive integer */ 14 NUMBER_TOKEN init (4) /* all other numbers */ 15 ) fixed bin int static options (constant); 16 17 /* ------ END INCLUDE SEGMENT apl_scan_info.incl.pl1 ------------------------------------ */