Move appropriate variables to NO_COPY segment, throughout.

This commit is contained in:
Christopher Faylor
2001-09-06 05:17:22 +00:00
parent 08b78edf5a
commit 57c89867f5
17 changed files with 31 additions and 27 deletions

View File

@@ -14,7 +14,7 @@ details. */
/********************** String Helper Functions ************************/
char case_folded_lower[] = {
const char case_folded_lower[] NO_COPY = {
0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15,
16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31,
32, '!', '"', '#', '$', '%', '&', 39, '(', ')', '*', '+', ',', '-', '.', '/',
@@ -33,7 +33,7 @@ char case_folded_lower[] = {
240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255
};
char case_folded_upper[] = {
const char case_folded_upper[] NO_COPY = {
0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15,
16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31,
32, '!', '"', '#', '$', '%', '&', 39, '(', ')', '*', '+', ',', '-', '.', '/',