mirror of https://github.com/embarklabs/sggc.git
23 lines
658 B
Solidity
23 lines
658 B
Solidity
|
/**
|
||
|
* This file is part of the 1st Solidity Gas Golfing Contest.
|
||
|
*
|
||
|
* This work is licensed under Creative Commons Attribution ShareAlike 3.0.
|
||
|
* https://creativecommons.org/licenses/by-sa/3.0/
|
||
|
*/
|
||
|
|
||
|
pragma solidity 0.4.24;
|
||
|
|
||
|
contract HexDecoder {
|
||
|
/**
|
||
|
* @dev Decodes a hex-encoded input string, returning it in binary.
|
||
|
*
|
||
|
* Input strings may be of any length, but will always be a multiple of two
|
||
|
* bytes long, and will not contain any non-hexadecimal characters.
|
||
|
*
|
||
|
* @param input The hex-encoded input.
|
||
|
* @return The decoded output.
|
||
|
*/
|
||
|
function decode(string input) public pure returns(bytes output) {
|
||
|
}
|
||
|
}
|