letsencrypt::Client method decnum_to_bytes (protected)

 <instance of letsencrypt::Client[i]> decnum_to_bytes num

Defined in /usr/local/ns/tcl/letsencrypt/letsencrypt-procs.tcl

Parameters:
num

Partial Call Graph (max 5 caller/called nodes):
%3

Testcases:
No testcase defined.
Source code:
set result ""

while {$num} {
    set char [expr {$num & 0xff}]
    set result "[format %c $char]$result"
    set num [expr {$num >> 8}]
}
return $result
XQL Not present:
Generic, PostgreSQL, Oracle
[ hide source ] | [ make this the default ]
Show another procedure: