Server IP : 68.65.122.142  /  Your IP : 18.118.141.81
Web Server : LiteSpeed
System : Linux server167.web-hosting.com 4.18.0-513.18.1.lve.el8.x86_64 #1 SMP Thu Feb 22 12:55:50 UTC 2024 x86_64
User : glenirhm ( 1318)
PHP Version : 7.4.33
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON
Directory (0755) :  /var/../sbin/../share/locale/sv/../bad/../arp/../os/../ff/../it/../kk/../nah/../sl_SI/../ko/../ur_PK/../he/../en_ZA/../jam/../om/../ur/../af/../gor/../sla/../sit/../dv/../rup/../ml/../co/../ber/../bo/../oc/../wae/../art/../nyo/../gor/../cus/../nds/../../awk/

[  Home  ][  C0mmand  ][  Upload File  ]

Current File : //var/../sbin/../share/locale/sv/../bad/../arp/../os/../ff/../it/../kk/../nah/../sl_SI/../ko/../ur_PK/../he/../en_ZA/../jam/../om/../ur/../af/../gor/../sla/../sit/../dv/../rup/../ml/../co/../ber/../bo/../oc/../wae/../art/../nyo/../gor/../cus/../nds/../../awk/ord.awk
# ord.awk --- do ord and chr

# Global identifiers:
#    _ord_:        numerical values indexed by characters
#    _ord_init:    function to initialize _ord_
#
# Arnold Robbins, arnold@skeeve.com, Public Domain
# 16 January, 1992
# 20 July, 1992, revised

BEGIN    { _ord_init() }

function _ord_init(    low, high, i, t)
{
    low = sprintf("%c", 7) # BEL is ascii 7
    if (low == "\a") {    # regular ascii
        low = 0
        high = 127
    } else if (sprintf("%c", 128 + 7) == "\a") {
        # ascii, mark parity
        low = 128
        high = 255
    } else {        # ebcdic(!)
        low = 0
        high = 255
    }

    for (i = low; i <= high; i++) {
        t = sprintf("%c", i)
        _ord_[t] = i
    }
}
function ord(str,    c)
{
    # only first character is of interest
    c = substr(str, 1, 1)
    return _ord_[c]
}

function chr(c)
{
    # force c to be numeric by adding 0
    return sprintf("%c", c + 0)
}