Skip to content

Latest commit

 

History

History
14 lines (12 loc) · 401 Bytes

bin2hex.sh.md

File metadata and controls

14 lines (12 loc) · 401 Bytes

bin2hex

bin2hex -- Converts a binary string into hexadecimal representation.

Converts binary data into hexadecimal representation.

Usage

// 1. Function form.
void func::bin2hex(string* hexadecimal_output, string binary_input)
// 2. Command form.
void sub::bin2hex(string binary_input) > hexadecimal_output
// 3. Stream form.
void stream::bin2hex() < binary_input > hexadecimal_output