|
|
1.1 ! root 1: #define INCH 240 ! 2: /* ! 3: HDS Concept AVT-APL ! 4: nroff driving tables ! 5: width and code tables ! 6: */ ! 7: ! 8: struct termtable tavt = { ! 9: /*bset*/ 0, ! 10: /*breset*/ 0, ! 11: /*Hor*/ INCH/10, ! 12: /*Vert*/ INCH/6, ! 13: /*Newline*/ INCH/6, ! 14: /*Char*/ INCH/10, ! 15: /*Em*/ INCH/10, ! 16: /*Halfline*/ INCH/6, ! 17: /*Adj*/ INCH/10, ! 18: /*twinit*/ "", ! 19: /*twrest*/ "", ! 20: /*twnl*/ "\n", ! 21: /*hlr*/ 0, ! 22: /*hlf*/ 0, ! 23: /*flr*/ "\033M", ! 24: /*bdon*/ "\033[1m", ! 25: /*bdoff*/ "\033[1!{", ! 26: /*iton*/ "\033[4m", ! 27: /*itoff*/ "\033[4!{", ! 28: /*ploton*/ "", ! 29: /*plotoff*/ "", ! 30: /*up*/ "\033M", ! 31: /*down*/ "\033D", ! 32: /*right*/ "\033[C", ! 33: /*left*/ "\033[D", ! 34: /*codetab*/ ! 35: "\001\033[C", /*space*/ ! 36: "\001!", /*!*/ ! 37: "\001\"", /*"*/ ! 38: "\001#", /*#*/ ! 39: "\001$", /*$*/ ! 40: "\001%", /*%*/ ! 41: "\001&", /*&*/ ! 42: "\001'", /*' close*/ ! 43: "\001(", /*(*/ ! 44: "\001)", /*)*/ ! 45: "\001*", /***/ ! 46: "\001+", /*+*/ ! 47: "\001,", /*,*/ ! 48: "\001-", /*- hyphen*/ ! 49: "\001.", /*.*/ ! 50: "\001/", /*/*/ ! 51: "\2010", /*0*/ ! 52: "\2011", /*1*/ ! 53: "\2012", /*2*/ ! 54: "\2013", /*3*/ ! 55: "\2014", /*4*/ ! 56: "\2015", /*5*/ ! 57: "\2016", /*6*/ ! 58: "\2017", /*7*/ ! 59: "\2018", /*8*/ ! 60: "\2019", /*9*/ ! 61: "\001:", /*:*/ ! 62: "\001;", /*;*/ ! 63: "\001<", /*<*/ ! 64: "\001=", /*=*/ ! 65: "\001>", /*>*/ ! 66: "\001?", /*?*/ ! 67: "\001@", /*@*/ ! 68: "\201A", /*A*/ ! 69: "\201B", /*B*/ ! 70: "\201C", /*C*/ ! 71: "\201D", /*D*/ ! 72: "\201E", /*E*/ ! 73: "\201F", /*F*/ ! 74: "\201G", /*G*/ ! 75: "\201H", /*H*/ ! 76: "\201I", /*I*/ ! 77: "\201J", /*J*/ ! 78: "\201K", /*K*/ ! 79: "\201L", /*L*/ ! 80: "\201M", /*M*/ ! 81: "\201N", /*N*/ ! 82: "\201O", /*O*/ ! 83: "\201P", /*P*/ ! 84: "\201Q", /*Q*/ ! 85: "\201R", /*R*/ ! 86: "\201S", /*S*/ ! 87: "\201T", /*T*/ ! 88: "\201U", /*U*/ ! 89: "\201V", /*V*/ ! 90: "\201W", /*W*/ ! 91: "\201X", /*X*/ ! 92: "\201Y", /*Y*/ ! 93: "\201Z", /*Z*/ ! 94: "\001[", /*[*/ ! 95: "\001\\", /*\*/ ! 96: "\001]", /*]*/ ! 97: "\001^", /*^*/ ! 98: "\001_", /*_ dash*/ ! 99: "\001`", /*` open*/ ! 100: "\201a", /*a*/ ! 101: "\201b", /*b*/ ! 102: "\201c", /*c*/ ! 103: "\201d", /*d*/ ! 104: "\201e", /*e*/ ! 105: "\201f", /*f*/ ! 106: "\201g", /*g*/ ! 107: "\201h", /*h*/ ! 108: "\201i", /*i*/ ! 109: "\201j", /*j*/ ! 110: "\201k", /*k*/ ! 111: "\201l", /*l*/ ! 112: "\201m", /*m*/ ! 113: "\201n", /*n*/ ! 114: "\201o", /*o*/ ! 115: "\201p", /*p*/ ! 116: "\201q", /*q*/ ! 117: "\201r", /*r*/ ! 118: "\201s", /*s*/ ! 119: "\201t", /*t*/ ! 120: "\201u", /*u*/ ! 121: "\201v", /*v*/ ! 122: "\201w", /*w*/ ! 123: "\201x", /*x*/ ! 124: "\201y", /*y*/ ! 125: "\201z", /*z*/ ! 126: "\001{", /*{*/ ! 127: "\001|", /*|*/ ! 128: "\001}", /*}*/ ! 129: "\001~", /*~*/ ! 130: "\000\0", /*narrow sp*/ ! 131: "\001-", /*hyphen*/ ! 132: "\001\016O\bP\017", /*bullet*/ ! 133: "\001\016L\017", /*square*/ ! 134: "\001-", /*3/4 em*/ ! 135: "\001_", /*rule*/ ! 136: "\0031/4", /*1/4*/ ! 137: "\0031/2", /*1/2*/ ! 138: "\0033/4", /*3/4*/ ! 139: "\001-", /*minus*/ ! 140: "\202fi", /*fi*/ ! 141: "\202fl", /*fl*/ ! 142: "\202ff", /*ff*/ ! 143: "\203ffi", /*ffi*/ ! 144: "\203ffl", /*ffl*/ ! 145: "\001\016J\017", /*degree*/ ! 146: "\001\016M\b@\017", /*dagger*/ ! 147: "\000\0", /*section*/ ! 148: "\001\016K\017", /*foot mark*/ ! 149: "\001'", /*acute accent*/ ! 150: "\001`", /*grave accent*/ ! 151: "\001_", /*underrule*/ ! 152: "\001/", /*slash (longer)*/ ! 153: "\000\0", /*half narrow space*/ ! 154: "\001\033[C", /*unpaddable space*/ ! 155: "\201\016A\017", /*alpha*/ ! 156: "\201b", /*beta*/ ! 157: "\201g", /*gamma*/ ! 158: "\201d", /*delta*/ ! 159: "\201\016E\017", /*epsilon*/ ! 160: "\201z", /*zeta*/ ! 161: "\201e", /*eta*/ ! 162: "\201\016J\b/\017", /*theta*/ ! 163: "\201\016I\017", /*iota*/ ! 164: "\201k", /*kappa*/ ! 165: "\201l", /*lambda*/ ! 166: "\201m", /*mu*/ ! 167: "\201n", /*nu*/ ! 168: "\201x", /*xi*/ ! 169: "\201o", /*omicron*/ ! 170: "\201p", /*pi*/ ! 171: "\201\016R\017", /*rho*/ ! 172: "\201\016O\b@\017", /*sigma*/ ! 173: "\201\016I\bT\017", /*tau*/ ! 174: "\201v", /*upsilon*/ ! 175: "\201f", /*phi*/ ! 176: "\201c", /*chi*/ ! 177: "\201s", /*psi*/ ! 178: "\201\016W\017", /*omega*/ ! 179: "\201G", /*Gamma*/ ! 180: "\201\016H\017", /*Delta*/ ! 181: "\201\016O\bM\017", /*Theta*/ ! 182: "\201L", /*Lambda*/ ! 183: "\001X", /*Xi*/ ! 184: "\201P", /*Pi*/ ! 185: "\201S", /*Sigma*/ ! 186: "\000\0", /**/ ! 187: "\201Y", /*Upsilon*/ ! 188: "\201F", /*Phi*/ ! 189: "\203Psi", /*Psi*/ ! 190: "\201O", /*Omega*/ ! 191: "\000\0", /*square root*/ ! 192: "\000\0", /*terminal sigma*/ ! 193: "\001\016@\017", /*root en*/ ! 194: "\001\016^\017", /*>=*/ ! 195: "\001\016$\017", /*<=*/ ! 196: "\001_\b=", /*identically equal*/ ! 197: "\001-", /*equation minus*/ ! 198: "\001\016%\bT\017", /*approx =*/ ! 199: "\001\016T\017", /*approximates*/ ! 200: "\001\016*\017", /*not equal*/ ! 201: "\001\016]\017", /*right arrow*/ ! 202: "\001\016[\017", /*left arrow*/ ! 203: "\001\016Y\017", /*up arrow*/ ! 204: "\001\016U\017", /*down arrow*/ ! 205: "\001=", /*equation equal*/ ! 206: "\001\016=\017", /*multiply*/ ! 207: "\001\016+\017", /*divide*/ ! 208: "\001_\b+", /*plus-minus*/ ! 209: "\001\016V\017", /*cup (union)*/ ! 210: "\001\016C\017", /*cap (intersection)*/ ! 211: "\001\016Z\017", /*subset of*/ ! 212: "\001\016X\017", /*superset of*/ ! 213: "\001\016Z\bF\017", /*improper subset*/ ! 214: "\001\016X\bF\017", /* improper superset*/ ! 215: "\002oo", /*infinity*/ ! 216: "\000\0", /*partial derivative*/ ! 217: "\000\0", /*gradient*/ ! 218: "\000\0", /*not*/ ! 219: "\000\0", /*integral sign*/ ! 220: "\000\0", /*proportional to*/ ! 221: "\000\0", /*empty set*/ ! 222: "\000\0", /*member of*/ ! 223: "\001+", /*equation plus*/ ! 224: "\001R", /*registered*/ ! 225: "\001C", /*copyright*/ ! 226: "\001\016M\017", /*box rule */ ! 227: "\001\016Z\bM\017", /*cent sign*/ ! 228: "\001\016M\b@\b_\017", /*dbl dagger*/ ! 229: "\001\016\\\017", /*right hand*/ ! 230: "\001\016|\017", /*left hand*/ ! 231: "\001*", /*math * */ ! 232: "\000\0", /*bell system sign*/ ! 233: "\001\016(\017", /*or (was star)*/ ! 234: "\001\016O\017", /*circle*/ ! 235: "\001|", /*left top (of big curly)*/ ! 236: "\001|", /*left bottom*/ ! 237: "\001|", /*right top*/ ! 238: "\001|", /*right bot*/ ! 239: "\001{", /*left center of big curly bracket*/ ! 240: "\001}", /*right center of big curly bracket*/ ! 241: "\001|", /*bold vertical*/ ! 242: "\001\016D\017", /*left floor (left bot of big sq bract)*/ ! 243: "\001|", /*right floor (rb of ")*/ ! 244: "\001|", /*left ceiling (lt of ")*/ ! 245: "\001\016S\017"}; /*right ceiling (rt of ")*/
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.