Lines Matching full:decc
39 void decc$__posix_exit(int __status);
40 void decc$exit(int __status);
78 * When running under the DCL shell, then the VMS encoded codes and decc$exit()
98 decc$__posix_exit(code);
108 decc$exit(vms_code);
120 * RTL features without using the DECC$* logical name method, nor
124 /* Structure to hold a DECC$* feature name and its desired value. */
130 /* Array of DECC$* feature names and their desired values. */
133 { "DECC$ARGV_PARSE_STYLE", 1 },
135 { "DECC$EFS_CASE_PRESERVE", 1 },
138 { "DECC$EFS_CHARSET", 1 },
163 feat_index = decc$feature_get_index( decc_feat_array[i].name);
167 feat_value = decc$feature_get_value( feat_index, 1);
168 feat_value_min = decc$feature_get_value( feat_index, 2);
169 feat_value_max = decc$feature_get_value( feat_index, 3);
175 sts = decc$feature_set_value( feat_index, 1,
180 /* Invalid DECC feature value. */
181 printf(" INVALID DECC FEATURE VALUE, %d: %d <= %s <= %d.\n",
187 /* Invalid DECC feature name. */
188 printf(" UNKNOWN DECC FEATURE: %s.\n", decc_feat_array[i].name);