2014-01-29 06:00:09 +00:00
|
|
|
var current_codepage, current_cptable, cptable;
|
2014-01-28 16:38:02 +00:00
|
|
|
if(typeof module !== "undefined" && typeof require !== 'undefined') {
|
2014-01-29 06:00:09 +00:00
|
|
|
if(typeof cptable === 'undefined') cptable = require('codepage');
|
|
|
|
current_codepage = 1252; current_cptable = cptable[1252];
|
2014-01-28 16:38:02 +00:00
|
|
|
}
|
|
|
|
function reset_cp() {
|
|
|
|
current_codepage = 1252; if(typeof cptable !== 'undefined') current_cptable = cptable[1252];
|
|
|
|
}
|
|
|
|
function _getchar(x) { return String.fromCharCode(x); }
|
|
|
|
|